Skip to content

Commit fb38517

Browse files
committed
Chat: Stop enforcing room banwords on usernames/statuses
1 parent dbd0ccb commit fb38517

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

server/chat.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -780,7 +780,7 @@ export class CommandContext extends MessageContext {
780780
}
781781
if (!message) return true;
782782
if (room.banwordRegex !== true && room.banwordRegex.test(message)) {
783-
throw new Chat.ErrorMessage(`Your username, status, or message contained a word banned by this room.`);
783+
throw new Chat.ErrorMessage(`Your message contained a word banned by this room.`);
784784
}
785785
return this.checkBanwords(room.parent as ChatRoom, message);
786786
}
@@ -1246,8 +1246,6 @@ export class CommandContext extends MessageContext {
12461246

12471247
this.checkSlowchat(room, user);
12481248

1249-
if (!user.can('bypassall')) this.checkBanwords(room, user.name);
1250-
if (user.userMessage && !user.can('bypassall')) this.checkBanwords(room, user.userMessage);
12511249
if (room && !user.can('mute', null, room)) this.checkBanwords(room, message);
12521250

12531251
const gameFilter = this.checkGameFilter();

0 commit comments

Comments
 (0)