Comparison fix
This commit is contained in:
@@ -69,7 +69,7 @@ public class ArcLoginNotifyMsgHandler extends AbstractClientMsgHandler {
|
||||
|
||||
// Send branch string if available from ConfigManager.
|
||||
|
||||
if (ConfigManager.currentRepoBranch != "")
|
||||
if (!ConfigManager.currentRepoBranch.equals(""))
|
||||
ChatManager.sendSystemMessage(player, ConfigManager.currentRepoBranch);
|
||||
|
||||
// Set player mask for QT
|
||||
|
||||
@@ -724,7 +724,7 @@ public class WorldServer {
|
||||
if (flashString == null)
|
||||
return;
|
||||
|
||||
if (flashString == "")
|
||||
if (flashString.equals(""))
|
||||
flashString = "Rebooting for to fix bug.";
|
||||
|
||||
Logger.info("Sending flash from external interface");
|
||||
|
||||
Reference in New Issue
Block a user