Remove unused value.

This commit is contained in:
drtshock 2015-04-25 14:25:17 -05:00
parent c3ac0cf1ea
commit 41d0195c9e
1 changed files with 1 additions and 3 deletions

View File

@ -56,9 +56,7 @@ public class CmdShow extends FCommand {
double powerBoost = faction.getPowerBoost();
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();
List<FancyMessage> allies = new ArrayList<FancyMessage>();
List<FancyMessage> enemies = new ArrayList<FancyMessage>();
if (!faction.isNone()) {