* Fixed a bug that if copied spells should be shuffled into the library the original spell was removed from the stack.

This commit is contained in:
LevelX2 2015-10-19 22:36:28 +02:00
parent f72ec06ecd
commit 7c35a69360
5 changed files with 123 additions and 41 deletions

View file

@ -622,7 +622,8 @@ public class Spell extends StackObjImpl implements Card {
}
public Spell copySpell() {
return new Spell(this.card.copy(), this.ability.copySpell(), this.controllerId, this.fromZone);
// replaced card.copy by copy (card content should no longer be changed)
return new Spell(this.card, this.ability.copySpell(), this.controllerId, this.fromZone);
}
@Override