From 163a4c7208c8d6500b1fc49aa23c1711b21b0be3 Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Thu, 15 Sep 2016 12:52:20 +1000 Subject: [PATCH] Core: Don't show star before name in /goto message. --- Player/PlayerActions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Player/PlayerActions.cs b/Player/PlayerActions.cs index 3c64334e8..54cd0c15d 100644 --- a/Player/PlayerActions.cs +++ b/Player/PlayerActions.cs @@ -125,7 +125,7 @@ namespace MCGalaxy { p.prevMsg = ""; if (!p.hidden && p.level.ShouldShowJoinMessage(oldLevel)) { - Player.SendChatFrom(p, p.color + "*" + p.DisplayName + " %Swent to &b" + lvl.name, false); + Player.SendChatFrom(p, p.DisplayName + " %Swent to &b" + lvl.name, false); Player.RaisePlayerAction(p, PlayerAction.JoinWorld, lvl.name); } return true;