mirror of
https://github.com/ReVanced/revanced-bots.git
synced 2026-01-26 12:41:03 +00:00
feat(bots/discord): add more options for curing, fix default regex
This commit is contained in:
@@ -54,9 +54,9 @@ export const cureNickname = async (member: GuildMember) => {
|
||||
const name = member.displayName
|
||||
let cured = decancer(name)
|
||||
.toString()
|
||||
.replace(/[^a-zA-Z0-9]/g, '')
|
||||
.replace(new RegExp(config.moderation?.cure?.removeCharactersRegex ?? '[^a-zA-Z0-9 \\-_]', 'g'), '')
|
||||
|
||||
if (cured.length < 3 || !/^[a-zA-Z]/.test(cured))
|
||||
if (cured.length < (config?.moderation?.cure?.minimumNameLength ?? 3))
|
||||
cured =
|
||||
member.user.username.length >= 3
|
||||
? member.user.username
|
||||
|
||||
Reference in New Issue
Block a user