fixed Derevi, Empyrial Tactician triggering while Humility is out when entering using its activated ability

This commit is contained in:
Evan Kranzler 2017-10-26 11:18:04 -04:00
parent a8969b9676
commit 8338a788d6

View file

@ -182,7 +182,7 @@ class PutCommanderOnBattlefieldEffect extends OneShotEffect {
} }
Card card = game.getCard(source.getSourceId()); Card card = game.getCard(source.getSourceId());
if (card != null) { if (card != null) {
card.putOntoBattlefield(game, Zone.COMMAND, source.getSourceId(), source.getControllerId()); player.moveCards(card, Zone.BATTLEFIELD, source, game);
return true; return true;
} }
return false; return false;