* Gonti, Lord of Luxury - Fixed that also lands could be played instead of only allow casting of cards (related to #2619).

This commit is contained in:
LevelX2 2016-11-21 21:03:01 +01:00
parent 2376f4ab64
commit ac223c311d

View file

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