Added copyCard method into Game interface

This commit is contained in:
magenoxx 2012-07-23 08:24:10 +04:00
parent 169277dd7b
commit 435798f7d5
3 changed files with 18 additions and 1 deletions

View file

@ -101,7 +101,9 @@ public class Spell<T extends Spell<T>> implements StackObject, Card {
return result;
}
}
card.moveToZone(Zone.GRAVEYARD, ability.getId(), game, false);
if (!card.isCopy()) {
card.moveToZone(Zone.GRAVEYARD, ability.getId(), game, false);
}
}
return result;