forked from External/mage
This commit is contained in:
parent
2e827a50ec
commit
d80d588963
9 changed files with 107 additions and 122 deletions
|
|
@ -217,7 +217,7 @@ public class SpellAbility extends ActivatedAbilityImpl {
|
|||
this.name = "Cast fused " + cardName;
|
||||
break;
|
||||
default:
|
||||
this.name = "Cast " + cardName + (this.spellAbilityCastMode != SpellAbilityCastMode.NORMAL ? " by " + spellAbilityCastMode.toString() : "");
|
||||
this.name = "Cast " + cardName + (this.spellAbilityCastMode != SpellAbilityCastMode.NORMAL ? " using " + spellAbilityCastMode.toString() : "");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -230,4 +230,11 @@ public class SpellAbility extends ActivatedAbilityImpl {
|
|||
setSpellName();
|
||||
}
|
||||
|
||||
public SpellAbility getSpellAbilityToResolve(Game game) {
|
||||
return this;
|
||||
}
|
||||
|
||||
public void setId(UUID idToUse) {
|
||||
this.id = idToUse;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue