fix wordlist
This commit is contained in:
parent
cb0752b9c7
commit
71fee66673
1 changed files with 1 additions and 1 deletions
|
@ -156,7 +156,7 @@ export class Client extends EventEmitter {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (talkMsg.data.msg.length > this.room.config.charlimit) return;
|
if (talkMsg.data.msg.length > this.room.config.charlimit) return;
|
||||||
if (this.room.config.bannedWords.some((w) => talkMsg.data.msg.indexOf(w) !== -1)) {
|
if (this.room.config.bannedWords.some((w) => talkMsg.data.msg.toLowerCase().indexOf(w.toLowerCase()) !== -1)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.emit('talk', talkMsg.data.msg);
|
this.emit('talk', talkMsg.data.msg);
|
||||||
|
|
Loading…
Reference in a new issue