mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
[KHM] Fixed Draugr Necromancer being able to play lands from MDFCs
This commit is contained in:
parent
0d885af05e
commit
58fda68117
1 changed files with 2 additions and 3 deletions
|
@ -126,14 +126,13 @@ class DraugrNecromancerCastFromExileEffect extends AsThoughEffectImpl {
|
|||
if (card == null) {
|
||||
return false;
|
||||
}
|
||||
card = card.getMainCard();
|
||||
if (!source.isControlledBy(affectedControllerId)
|
||||
|| game.getState().getZone(card.getId()) != Zone.EXILED) {
|
||||
|| game.getState().getZone(card.getMainCard().getId()) != Zone.EXILED) {
|
||||
return false;
|
||||
}
|
||||
return !card.isLand()
|
||||
&& game.getOpponents(card.getOwnerId()).contains(source.getControllerId())
|
||||
&& card.getCounters(game).getCount(CounterType.ICE) > 0;
|
||||
&& card.getMainCard().getCounters(game).getCount(CounterType.ICE) > 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue