mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
* 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:
parent
2376f4ab64
commit
ac223c311d
1 changed files with 3 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue