Small text change to commander info.

This commit is contained in:
LevelX2 2014-05-18 11:06:11 +02:00
parent 7ff932a91a
commit e484da4028
2 changed files with 3 additions and 1 deletions

View file

@ -106,7 +106,7 @@ public class CommanderCombatDamageWatcher extends WatcherImpl<CommanderCombatDam
sb.append("<b>Commander</b>");
Integer castCount = (Integer)game.getState().getValue(sourceId + "_castCount");
if (castCount != null) {
sb.append(" was ").append(castCount).append(castCount.intValue() == 1 ? " time":" times").append(" casted from the command zone.");
sb.append(" ").append(castCount).append(castCount.intValue() == 1 ? " time":" times").append(" casted from the command zone.");
}
this.addInfo(object, "Commander",sb.toString());
for (Map.Entry<UUID, Integer> entry : damageToPlayer.entrySet()) {