- Fixed a typo

This commit is contained in:
swordshine
2014-02-13 05:17:48 +00:00
parent 35d8ea0949
commit e7f0776098
3 changed files with 3 additions and 3 deletions

View File

@@ -1359,7 +1359,7 @@ public class AbilityUtils {
return CardFactoryUtil.xCount(c, s); return CardFactoryUtil.xCount(c, s);
} }
public static final void applyManaColorConvertion(final Player p, final Map<String, String> params) { public static final void applyManaColorConversion(final Player p, final Map<String, String> params) {
String conversionType = params.get("ManaColorConversion"); String conversionType = params.get("ManaColorConversion");
// Choices are Additives(OR) or Restrictive(AND) // Choices are Additives(OR) or Restrictive(AND)

View File

@@ -337,7 +337,7 @@ public class StaticAbilityContinuous {
} }
if (params.containsKey("ManaColorConversion")) { if (params.containsKey("ManaColorConversion")) {
AbilityUtils.applyManaColorConvertion(p, params); AbilityUtils.applyManaColorConversion(p, params);
} }
} }

View File

@@ -84,7 +84,7 @@ public class HumanPlaySpellAbility {
game.getStack().freezeStack(); game.getStack().freezeStack();
if (manaConversion) { if (manaConversion) {
AbilityUtils.applyManaColorConvertion(human, params); AbilityUtils.applyManaColorConversion(human, params);
} }
// This line makes use of short-circuit evaluation of boolean values, that is each subsequent argument // This line makes use of short-circuit evaluation of boolean values, that is each subsequent argument
// is only executed or evaluated if the first argument does not suffice to determine the value of the expression // is only executed or evaluated if the first argument does not suffice to determine the value of the expression