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

@ -283,10 +283,14 @@ public class Spell<T extends Spell<T>> implements StackObject, Card {
public void setExpansionSetCode(String expansionSetCode) {}
@Override
public Spell<T> copy() {
return new Spell<T>(this);
public Spell copy() {
return new Spell(this);
}
public Spell copySpell() {
return new Spell(this.card.copy(), this.ability.copySpell(), this.controllerId);
}
@Override
public void adjustCosts(Ability ability, Game game) {}