mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
Merge pull request #7151 from weirddan455/temporal-aperture-fix
Allow Temporal Aperture to play lands off the top of the library (bug #7141)
This commit is contained in:
commit
432d0ade25
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