- little fix Tomik, Distinguished Advokist.

This commit is contained in:
Jeff 2019-04-25 16:18:00 -05:00
parent d8a928051a
commit b32228a693

View file

@ -121,7 +121,8 @@ class TomikDistinguishedAdvokistTargetEffect extends ContinuousRuleModifyingEffe
Player player = game.getPlayer(source.getControllerId());
return targetCard != null && stackObject != null && player != null
&& player.hasOpponent(stackObject.getControllerId(), game)
&& game.getState().getZone(targetCard.getId()) == Zone.GRAVEYARD;
&& game.getState().getZone(targetCard.getId()) == Zone.GRAVEYARD
&& targetCard.isLand();
}
}