From 63d6d69224f1f6f67e06467a5217f5fd99725808 Mon Sep 17 00:00:00 2001 From: drtshock Date: Fri, 6 Feb 2015 09:17:17 -0600 Subject: [PATCH] Remove ~ from sendFactionhere message. People can add it in if they want via TL. --- .../com/massivecraft/factions/zcore/persist/MemoryFPlayer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/massivecraft/factions/zcore/persist/MemoryFPlayer.java b/src/main/java/com/massivecraft/factions/zcore/persist/MemoryFPlayer.java index 0d0c8564..a819fb88 100644 --- a/src/main/java/com/massivecraft/factions/zcore/persist/MemoryFPlayer.java +++ b/src/main/java/com/massivecraft/factions/zcore/persist/MemoryFPlayer.java @@ -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("") + " ~ " + toShow.getTag(this); + String msg = toShow.getTag(this); if (toShow.getDescription().length() > 0) { msg += " - " + toShow.getDescription(); }