Remove ~ from sendFactionhere message. People can add it in if they want via TL.

This commit is contained in:
drtshock 2015-02-06 09:17:17 -06:00
parent 5579005714
commit 63d6d69224
1 changed files with 1 additions and 1 deletions

View File

@ -554,7 +554,7 @@ public abstract class MemoryFPlayer implements FPlayer {
// Shows them the scoreboard instead of sending a message in chat. Will disappear after a few seconds.
FScoreboard.get(this).setTemporarySidebar(new FInfoSidebar(toShow));
} else {
String msg = P.p.txt.parse("<i>") + " ~ " + toShow.getTag(this);
String msg = toShow.getTag(this);
if (toShow.getDescription().length() > 0) {
msg += " - " + toShow.getDescription();
}