forked from External/mage
fixes
This commit is contained in:
parent
a99ef071c8
commit
3b1696d8f0
14 changed files with 102 additions and 31 deletions
|
|
@ -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) {}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue