From d54d2ffe0dda0d911284afeee7b4e8bf8cb3522c Mon Sep 17 00:00:00 2001 From: Nick Date: Thu, 27 Jun 2024 21:11:37 -0500 Subject: [PATCH] wording --- .../bat/command/impl/server/channel/SetTopicSubCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/cc/fascinated/bat/command/impl/server/channel/SetTopicSubCommand.java b/src/main/java/cc/fascinated/bat/command/impl/server/channel/SetTopicSubCommand.java index 7a86419..23c3467 100644 --- a/src/main/java/cc/fascinated/bat/command/impl/server/channel/SetTopicSubCommand.java +++ b/src/main/java/cc/fascinated/bat/command/impl/server/channel/SetTopicSubCommand.java @@ -40,7 +40,7 @@ public class SetTopicSubCommand extends BatSubCommand { String topic = interaction.getOption("topic").getAsString(); if (topic.length() > 1024) { interaction.replyEmbeds(EmbedUtils.errorEmbed() - .setDescription("The topic must be less than 1024 characters!") + .setDescription("The topic must be 1024 characters or less!") .build()) .queue(); return;