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