From ac223c311da7cd1fbaf3020b2d155ce98e636af3 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Mon, 21 Nov 2016 21:03:01 +0100 Subject: [PATCH] * Gonti, Lord of Luxury - Fixed that also lands could be played instead of only allow casting of cards (related to #2619). --- Mage.Sets/src/mage/cards/g/GontiLordOfLuxury.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/g/GontiLordOfLuxury.java b/Mage.Sets/src/mage/cards/g/GontiLordOfLuxury.java index 168307ed514..c5dfd843968 100644 --- a/Mage.Sets/src/mage/cards/g/GontiLordOfLuxury.java +++ b/Mage.Sets/src/mage/cards/g/GontiLordOfLuxury.java @@ -193,7 +193,9 @@ class GontiLordOfLuxuryCastFromExileEffect extends AsThoughEffectImpl { this.discard(); } else if (objectId.equals(targetId) && affectedControllerId.equals(source.getControllerId())) { - return true; + Card card = game.getCard(objectId); + // TODO: Allow to cast Zoetic Cavern face down + return card != null && !card.getCardType().contains(CardType.LAND); } return false; }