* Lazav, Dimir Mastermind - Fixed that it came back from non battlefield zone to battlefield copying previous copied card.

This commit is contained in:
LevelX2 2015-03-27 14:23:53 +01:00
parent ad0982618c
commit 7bb2bbe1fa
2 changed files with 46 additions and 0 deletions

View file

@ -110,6 +110,7 @@ class LazavDimirEffect extends ContinuousEffectImpl {
Card card = game.getCard(getTargetPointer().getFirst(game, source));
Permanent permanent = game.getPermanent(source.getSourceId());
if (card == null || permanent == null) {
discard();
return false;
}
if (IdOfCopiedCard == null || !IdOfCopiedCard.equals(card.getId())) {