This commit is contained in:
Loki 2011-07-12 19:00:03 +03:00
parent 78bcd1ab1d
commit 3e441c59e1
2 changed files with 4 additions and 1 deletions

View file

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