This commit is contained in:
BetaSteward 2010-11-26 05:06:25 +00:00
parent a99ef071c8
commit 3b1696d8f0
14 changed files with 102 additions and 31 deletions

View file

@ -53,7 +53,7 @@ public class CopyTargetSpellEffect extends OneShotEffect<CopyTargetSpellEffect>
public boolean apply(Game game, Ability source) {
Spell spell = game.getStack().getSpell(source.getFirstTarget());
if (spell != null) {
Spell copy = spell.copy();
Spell copy = spell.copySpell();
copy.setControllerId(source.getControllerId());
game.getStack().push(copy);
copy.chooseNewTargets(game);