From dfeb0e06e9c2f95478f15138edbb1eaa56e2ee49 Mon Sep 17 00:00:00 2001 From: Daniel Bomar Date: Mon, 26 Oct 2020 15:10:05 -0500 Subject: [PATCH] Allow Temporal Aperture to play lands off the top of the library (bug #7141) --- Mage.Sets/src/mage/cards/t/TemporalAperture.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/t/TemporalAperture.java b/Mage.Sets/src/mage/cards/t/TemporalAperture.java index 9f6e7ae786..179fb7b2f1 100644 --- a/Mage.Sets/src/mage/cards/t/TemporalAperture.java +++ b/Mage.Sets/src/mage/cards/t/TemporalAperture.java @@ -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; }