[KHM] Tibalt, Cosmic Impostor - Fixed MDFCs not being playable from exile (fixes #7494)

This commit is contained in:
Daniel Bomar 2021-02-03 18:28:47 -06:00
parent 7da65b38b2
commit 978f20a199
No known key found for this signature in database
GPG key ID: C86C8658F4023918

View file

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