Remove duplicate message for land/power/maxpower

This commit is contained in:
Evan Lindsay 2015-03-31 03:14:20 -07:00
parent f5b3628bc4
commit 7b522be2c7
1 changed files with 0 additions and 1 deletions

View File

@ -58,7 +58,6 @@ public class CmdShow extends FCommand {
String boost = (powerBoost == 0.0) ? "" : (powerBoost > 0.0 ? TL.COMMAND_SHOW_BONUS.toString() : TL.COMMAND_SHOW_PENALTY.toString() + powerBoost + ")");
String raidable = faction.getLandRounded() > faction.getPowerRounded() ? TL.RAIDABLE_TRUE.toString() : TL.RAIDABLE_FALSE.toString();
msg(TL.COMMAND_SHOW_POWER, faction.getLandRounded(), faction.getPowerRounded(), faction.getPowerMaxRounded(), boost, raidable);
List<FancyMessage> allies = new ArrayList<FancyMessage>();
List<FancyMessage> enemies = new ArrayList<FancyMessage>();