Allow Temporal Aperture to play lands off the top of the library (bug #7141)

This commit is contained in:
Daniel Bomar 2020-10-26 15:10:05 -05:00
parent a317a875e7
commit dfeb0e06e9

View file

@ -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;
}