Actions based on text search for the word universe.

This commit is contained in:
Olof Larsson
2014-09-17 13:33:09 +02:00
parent 0b60a5ad1a
commit 5e812e1b9b
6 changed files with 10 additions and 11 deletions

View File

@ -57,7 +57,7 @@ public class CmdFactionsFaction extends FCommand
boolean normal = faction.isNormal();
// INFO: Title
msg(Txt.titleize(Txt.upperCaseFirst(faction.getUniverse()) + " Faction " + faction.getName(usender)));
msg(Txt.titleize("Faction " + faction.getName(usender)));
// INFO: Description
msg("<a>Description: <i>%s", faction.getDescription());

View File

@ -41,7 +41,7 @@ public class CmdFactionsPlayer extends FCommand
if (mplayer == null) return;
// INFO: Title
msg(Txt.titleize(Txt.upperCaseFirst(mplayer.getUniverse()) + " Player " + mplayer.describeTo(usender)));
msg(Txt.titleize("Player " + mplayer.describeTo(usender)));
// INFO: Power (as progress bar)
double progressbarQuota = mplayer.getPower() / mplayer.getPowerMax();