From a1a7cbe946f798e2ab8be4f38589eaf8e8f4c1cf Mon Sep 17 00:00:00 2001 From: Michel Fedde Date: Tue, 27 May 2025 21:21:53 +0200 Subject: [PATCH] Fixes group name being not limited --- source/Discord/Commands/Groups.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/source/Discord/Commands/Groups.ts b/source/Discord/Commands/Groups.ts index 25be58d..f9cb3df 100644 --- a/source/Discord/Commands/Groups.ts +++ b/source/Discord/Commands/Groups.ts @@ -48,6 +48,7 @@ export class GroupCommand implements Command, ChatInteractionCommand, Autocomple option.setName("name") .setDescription("Defines the name for the group.") .setRequired(true) + .setMaxLength(64) ) .addRoleOption((builder) => builder.setName("role")