mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
Allow Temporal Aperture to play lands off the top of the library (bug #7141)
This commit is contained in:
parent
a317a875e7
commit
dfeb0e06e9
1 changed files with 1 additions and 1 deletions
|
@ -120,7 +120,7 @@ class TemporalApertureTopCardCastEffect extends AsThoughEffectImpl {
|
|||
if (controller != null
|
||||
&& game.getState().getZone(objectId) == Zone.LIBRARY) {
|
||||
if (controller.getLibrary().getFromTop(game).equals(card)) {
|
||||
if (objectCard == card && objectCard.getSpellAbility() != null) { // only if castable
|
||||
if (objectCard == card && (objectCard.getSpellAbility() != null || objectCard.isLand())) { // only if castable or land
|
||||
allowCardToPlayWithoutMana(objectId, source, affectedControllerId, game);
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue