diff --git a/bot/src/bot/commands/moderation/ban.ts b/bot/src/bot/commands/moderation/ban.ts index 3d120a7..a70db58 100644 --- a/bot/src/bot/commands/moderation/ban.ts +++ b/bot/src/bot/commands/moderation/ban.ts @@ -69,8 +69,8 @@ export default { ?.replace(new RegExp('`', 'g'), '\'') ?.replace(new RegExp('\n', 'g'), ' '); - if (reason.length > 200) return message.reply({ - embeds: [ embed('Ban reason may not be longer than 200 characters.', null, EmbedColor.SoftError) ] + if (reason.length > 500) return message.reply({ + embeds: [ embed('Ban reason may not be longer than 500 characters.', null, EmbedColor.SoftError) ] }); const embeds: SendableEmbed[] = []; diff --git a/bot/src/bot/commands/moderation/kick.ts b/bot/src/bot/commands/moderation/kick.ts index 89b0673..11be47e 100644 --- a/bot/src/bot/commands/moderation/kick.ts +++ b/bot/src/bot/commands/moderation/kick.ts @@ -38,8 +38,8 @@ export default { ?.replace(new RegExp('`', 'g'), '\'') ?.replace(new RegExp('\n', 'g'), ' '); - if (reason.length > 200) return message.reply({ - embeds: [ embed('Kick reason may not be longer than 200 characters.', null, EmbedColor.SoftError) ] + if (reason.length > 500) return message.reply({ + embeds: [ embed('Kick reason may not be longer than 500 characters.', null, EmbedColor.SoftError) ] }); const embeds: SendableEmbed[] = []; diff --git a/bot/src/bot/commands/moderation/warn.ts b/bot/src/bot/commands/moderation/warn.ts index c4e4a1a..2445e13 100644 --- a/bot/src/bot/commands/moderation/warn.ts +++ b/bot/src/bot/commands/moderation/warn.ts @@ -32,8 +32,8 @@ export default { ?.replace(new RegExp('`', 'g'), '\'') ?.replace(new RegExp('\n', 'g'), ' '); - if (reason.length > 200) return message.reply({ - embeds: [ embed('Warn reason may not be longer than 200 characters.', null, EmbedColor.SoftError) ] + if (reason.length > 500) return message.reply({ + embeds: [ embed('Warn reason may not be longer than 500 characters.', null, EmbedColor.SoftError) ] }); const embeds: SendableEmbed[] = [];