We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c02f36 commit 26e7be5Copy full SHA for 26e7be5
src/client/scripts/Chat.js
@@ -32,7 +32,7 @@ var Chat = class Chat {
32
window.addEventListener(
33
"wheel",
34
function (e) {
35
- if (_this.game.FPC.gameState !== "chat") {
+ if (_this.game.eh.gameState !== "chat") {
36
e.preventDefault();
37
}
38
},
@@ -55,6 +55,7 @@ var Chat = class Chat {
55
56
57
log(message) {
58
+ if(message.split(" ")[1].indexOf("<") == -1 && message.split(" ").indexOf(">") == -1)
59
$(".chat").append(`<span>${message}<br></span>`);
60
this.scrollToBottom(this.chatDiv);
61
0 commit comments