From 36dd41619bf236c1254319bb27594b47e7ee54f8 Mon Sep 17 00:00:00 2001 From: Goodlyay Date: Thu, 1 Dec 2016 20:34:33 -0800 Subject: [PATCH] Core: Make "Login Failed" message more clear. --- MCGalaxy/CorePlugin/ConnectingHandler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MCGalaxy/CorePlugin/ConnectingHandler.cs b/MCGalaxy/CorePlugin/ConnectingHandler.cs index d2de72bde..5d2abb930 100644 --- a/MCGalaxy/CorePlugin/ConnectingHandler.cs +++ b/MCGalaxy/CorePlugin/ConnectingHandler.cs @@ -83,7 +83,7 @@ namespace MCGalaxy { string hashHex = BitConverter.ToString(hash); if (!mppass.CaselessEq(hashHex.Replace("-", ""))) { if (!Player.IPInPrivateRange(p.ip)) { - p.Leave(null, "Login failed! Try signing in again.", true); return false; + p.Leave(null, "Login failed! Close the game and sign in again.", true); return false; } } else { p.verifiedName = true;