Fixes group name being not limited

This commit is contained in:
Michel Fedde 2025-05-27 21:21:53 +02:00
parent 7afcd6b26a
commit a1a7cbe946

View file

@ -48,6 +48,7 @@ export class GroupCommand implements Command, ChatInteractionCommand, Autocomple
option.setName("name") option.setName("name")
.setDescription("Defines the name for the group.") .setDescription("Defines the name for the group.")
.setRequired(true) .setRequired(true)
.setMaxLength(64)
) )
.addRoleOption((builder) => .addRoleOption((builder) =>
builder.setName("role") builder.setName("role")