[sus] more strict check for "MAP"
This commit is contained in:
parent
6e3370f164
commit
7d8415968c
|
@ -92,8 +92,8 @@ function* isSuspicious(profile) {
|
|||
flags.includes('pedophile') ||
|
||||
description.includes('lolicon') ||
|
||||
flags.includes('lolicon') ||
|
||||
description.includes('map') ||
|
||||
flags.includes('map')
|
||||
profile.description.match(/\bMAP\b/) ||
|
||||
JSON.stringify(profile.customFlags).match(/\bMAP\b/)
|
||||
) {
|
||||
yield 'Pedophile';
|
||||
}
|
||||
|
|
Reference in New Issue