diff --git a/backend/websockets/chat.js b/backend/websockets/chat.js index 57bf442e..be0e7a0b 100644 --- a/backend/websockets/chat.js +++ b/backend/websockets/chat.js @@ -885,11 +885,6 @@ module.exports = async function(ws, data, send, broadcast, server, ctx) { chatData.message = msg; } - if(isMuted) { - var expTime = muteInfo[0]; - serverChatResponse("You are temporarily muted (" + calculateTimeDiff(expTime - Date.now()) + ")", location); - return; - } var websocketChatData = Object.assign({ kind: "chat" }, chatData);