File tree 1 file changed +1
-3
lines changed
1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -780,7 +780,7 @@ export class CommandContext extends MessageContext {
780
780
}
781
781
if ( ! message ) return true ;
782
782
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.` ) ;
784
784
}
785
785
return this . checkBanwords ( room . parent as ChatRoom , message ) ;
786
786
}
@@ -1246,8 +1246,6 @@ export class CommandContext extends MessageContext {
1246
1246
1247
1247
this . checkSlowchat ( room , user ) ;
1248
1248
1249
- if ( ! user . can ( 'bypassall' ) ) this . checkBanwords ( room , user . name ) ;
1250
- if ( user . userMessage && ! user . can ( 'bypassall' ) ) this . checkBanwords ( room , user . userMessage ) ;
1251
1249
if ( room && ! user . can ( 'mute' , null , room ) ) this . checkBanwords ( room , message ) ;
1252
1250
1253
1251
const gameFilter = this . checkGameFilter ( ) ;
You can’t perform that action at this time.
0 commit comments