From 6c0199323aba79e62537e9815e42988a50d0dad3 Mon Sep 17 00:00:00 2001 From: "marcins78@gmail.com" Date: Sun, 13 Jan 2013 09:38:45 +0000 Subject: [PATCH] Fixing hall reloading like mad. --- .../com/gempukku/lotro/hall/HallCommunicationChannel.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gemp-lotr/gemp-lotr-server/src/main/java/com/gempukku/lotro/hall/HallCommunicationChannel.java b/gemp-lotr/gemp-lotr-server/src/main/java/com/gempukku/lotro/hall/HallCommunicationChannel.java index 50eb37c90..26422ec63 100644 --- a/gemp-lotr/gemp-lotr-server/src/main/java/com/gempukku/lotro/hall/HallCommunicationChannel.java +++ b/gemp-lotr/gemp-lotr-server/src/main/java/com/gempukku/lotro/hall/HallCommunicationChannel.java @@ -112,7 +112,7 @@ public class HallCommunicationChannel { } }); - if (newMotd.getValue() != null && !newMotd.equals(_lastMotd)) + if (newMotd.getValue() != null && !newMotd.getValue().equals(_lastMotd)) return true; if (_tournamentQueuePropsOnClient.size() != tournamentQueuesOnServer.size()) @@ -234,7 +234,7 @@ public class HallCommunicationChannel { notifyAboutTables(hallChannelVisitor, tablesOnServer); _tablePropsOnClient = tablesOnServer; - if (newMotd.getValue() != null && !newMotd.equals(_lastMotd)) { + if (newMotd.getValue() != null && !newMotd.getValue().equals(_lastMotd)) { String newMotdStr = (String) newMotd.getValue(); hallChannelVisitor.motdChanged(newMotdStr); _lastMotd = newMotdStr;