- Log formatting fix in LifeGainEffect.

This commit is contained in:
Agetian
2017-01-13 09:05:09 +00:00
parent 2cd474fbf3
commit ec68b59e24

View File

@@ -24,9 +24,9 @@ public class LifeGainEffect extends SpellAbilityEffect {
if (!amountStr.equals("AFLifeLost") || sa.hasSVar(amountStr)) { if (!amountStr.equals("AFLifeLost") || sa.hasSVar(amountStr)) {
final int amount = AbilityUtils.calculateAmount(sa.getHostCard(), amountStr, sa); final int amount = AbilityUtils.calculateAmount(sa.getHostCard(), amountStr, sa);
sb.append("gains ").append(amount).append(" life."); sb.append(" gains ").append(amount).append(" life.");
} else { } else {
sb.append("gains life equal to the life lost this way."); sb.append(" gains life equal to the life lost this way.");
} }
return sb.toString(); return sb.toString();