forked from External/mage
code style: private static final
This commit is contained in:
parent
ef3be3987b
commit
45b54e8cc4
13 changed files with 20 additions and 22 deletions
|
|
@ -112,7 +112,7 @@ public class BestowAbility extends SpellAbility {
|
|||
return "Bestow " + getManaCostsToPay().getText() + " <i>(If you cast this card for its bestow cost, it's an Aura spell with enchant creature. It becomes a creature again if it's not attached to a creature.)</i>";
|
||||
}
|
||||
|
||||
static public void becomeCreature(Permanent permanent, Game game) {
|
||||
public static void becomeCreature(Permanent permanent, Game game) {
|
||||
// permanently changes to the object
|
||||
if (permanent != null) {
|
||||
MageObject basicObject = permanent.getBasicMageObject(game);
|
||||
|
|
@ -126,7 +126,7 @@ public class BestowAbility extends SpellAbility {
|
|||
}
|
||||
}
|
||||
|
||||
static public void becomeAura(Card card) {
|
||||
public static void becomeAura(Card card) {
|
||||
// permanently changes to the object
|
||||
if (card != null) {
|
||||
card.addSubType(SubType.AURA);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue