hack betterer

This commit is contained in:
Christian 'ketura' McCarty
2022-11-03 01:56:24 -05:00
parent 8ca4fb3e34
commit 830e542f4e

View File

@@ -35,7 +35,11 @@ var GempLotrHallUI = Class.extend({
if (xhr.status == 401) {
that.chat.appendMessage("Game hall problem - You're not logged in, go to the <a href='index.html'>main page</a> to log in", "warningMessage");
return;
} else if (xhr.status != 504) {
}
else if (xhr.status == 504) {
return
}
else if (xhr.status != 504) {
that.chat.appendMessage("The game hall had a problem communicating with the server (" + xhr.status + "), no new updates will be displayed.", "warningMessage");
that.chat.appendMessage("Reload the browser page (press F5) to resume the game hall functionality.", "warningMessage");
return;