forked from External/mage
* 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:
parent
f72ec06ecd
commit
7c35a69360
5 changed files with 123 additions and 41 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue