master #1

Merged
Fascinated merged 13 commits from okNick/Bat:master into master 2024-06-28 17:56:18 +00:00
Showing only changes of commit d54d2ffe0d - Show all commits

@ -40,7 +40,7 @@ public class SetTopicSubCommand extends BatSubCommand {
String topic = interaction.getOption("topic").getAsString(); String topic = interaction.getOption("topic").getAsString();
if (topic.length() > 1024) { if (topic.length() > 1024) {
interaction.replyEmbeds(EmbedUtils.errorEmbed() interaction.replyEmbeds(EmbedUtils.errorEmbed()
.setDescription("The topic must be less than 1024 characters!") .setDescription("The topic must be 1024 characters or less!")
.build()) .build())
.queue(); .queue();
return; return;