From 29441bd5b9fde12c1ff834306c7c52c94b2e59b5 Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Wed, 10 May 2017 15:21:05 +1000 Subject: [PATCH] fix --- MCGalaxy/Player/PlayerActions.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MCGalaxy/Player/PlayerActions.cs b/MCGalaxy/Player/PlayerActions.cs index 30a4b4f29..5714d4002 100644 --- a/MCGalaxy/Player/PlayerActions.cs +++ b/MCGalaxy/Player/PlayerActions.cs @@ -112,8 +112,8 @@ namespace MCGalaxy { CheckGamesJoin(p, oldLevel); if (p.level.ShouldShowJoinMessage(oldLevel)) { - string msg = p.level.IsMuseum ? "%Swent to the " : "%Swent to "; - Chat.MessageGlobal(p, p.ColoredName + " %Swent " + lvl.ColoredName, false, true); + string msg = p.level.IsMuseum ? " %Swent to the " : " %Swent to "; + Chat.MessageGlobal(p, p.ColoredName + msg + lvl.ColoredName, false, true); Player.RaisePlayerAction(p, PlayerAction.JoinWorld, lvl.name); } return true;