Fixed choosing new targets for spell.

This commit is contained in:
magenoxx 2011-08-14 17:59:10 +04:00
parent dc14945d80
commit bc8d8b4c2f
3 changed files with 35 additions and 25 deletions

View file

@ -58,7 +58,7 @@ public class CopyTargetSpellEffect extends OneShotEffect<CopyTargetSpellEffect>
copy.setControllerId(source.getControllerId());
copy.setCopiedSpell(true);
game.getStack().push(copy);
copy.chooseNewTargets(game);
copy.chooseNewTargets(game, source.getControllerId());
return true;
}
return false;