mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
[KHM] Tibalt, Cosmic Impostor - Fixed MDFCs not being playable from exile (fixes #7494)
This commit is contained in:
parent
7da65b38b2
commit
978f20a199
1 changed files with 3 additions and 2 deletions
|
@ -72,9 +72,10 @@ class TibaltCosmicImposterPlayFromExileEffect extends AsThoughEffectImpl {
|
|||
if (cardInExile == null) {
|
||||
return false;
|
||||
}
|
||||
if (exile.contains(cardInExile.getId())
|
||||
UUID mainCardId = cardInExile.getMainCard().getId();
|
||||
if (exile.contains(mainCardId)
|
||||
&& affectedControllerId.equals(source.getControllerId())
|
||||
&& game.getState().getZone(cardInExile.getId()).equals(Zone.EXILED)) {
|
||||
&& game.getState().getZone(mainCardId).equals(Zone.EXILED)) {
|
||||
CardUtil.makeCardPlayableAndSpendManaAsAnyColor(game, source, cardInExile, Duration.Custom);
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue