CuroseOfEchoes bug fix and test

This commit is contained in:
drmDev 2016-04-04 10:00:20 -04:00
parent a0f7ac7704
commit 56c5c1328a
2 changed files with 32 additions and 1 deletions

View file

@ -151,7 +151,7 @@ class CurseOfEchoesEffect extends OneShotEffect {
if (!playerId.equals(spell.getControllerId())) {
Player player = game.getPlayer(playerId);
if (player.chooseUse(Outcome.Copy, chooseMessage, source, game)) {
Spell copy = spell.copySpell(source.getControllerId());;
Spell copy = spell.copySpell(source.getControllerId());
game.getStack().push(copy);
copy.chooseNewTargets(game, playerId);
}