more eslint

This commit is contained in:
Vendicated 2022-10-20 11:58:20 +02:00
parent 350e7b0a6a
commit 36f4478a4f
No known key found for this signature in database
GPG key ID: EC781ADFB93EFFA3
13 changed files with 39 additions and 19 deletions

View file

@ -111,7 +111,7 @@ function countMatches(sourceString: string, pattern: RegExp) {
const customMoyaiRe = /<a?:\w*moy?ai\w*:\d{17,20}>/gi;
function getMoyaiCount(message: string) {
let count = countOccurrences(message, MOYAI)
const count = countOccurrences(message, MOYAI)
+ countMatches(message, customMoyaiRe);
return Math.min(count, 10);