- Minor formatting fix,

This commit is contained in:
Agetian
2017-07-09 14:32:25 +00:00
parent 6f320f2c77
commit d0b18e159b

View File

@@ -745,7 +745,7 @@ public class DamageDealAi extends DamageAiBase {
int dmg = ComputerUtilMana.determineLeftoverMana(sa, ai, saTgt.getParam("XColor"));
while (!ComputerUtilMana.canPayManaCost(sa, ai, dmg)) {
// TODO: ideally should never get here, currently put here as a precaution for complex mana base cases where the miscalculation might occur. Will remove later if it proves to never trigger.
// TODO: ideally should never get here, currently put here as a precaution for complex mana base cases where the miscalculation might occur. Will remove later if it proves to never trigger.
System.out.println("Warning: AI could not pay mana cost for a XLifeDrain logic spell. Reducing X value to "+dmg);
dmg--;
}