From 043efe95473955d2af97cf33cc443e3aab4edfdd Mon Sep 17 00:00:00 2001 From: ChomeNS <95471003+ChomeNS@users.noreply.github.com> Date: Mon, 24 Mar 2025 17:02:54 +0700 Subject: [PATCH] fix: last commit didn't fix it lol --- .../java/me/chayapak1/chomens_bot/commands/InfoCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/me/chayapak1/chomens_bot/commands/InfoCommand.java b/src/main/java/me/chayapak1/chomens_bot/commands/InfoCommand.java index cc36af56..f37b78af 100644 --- a/src/main/java/me/chayapak1/chomens_bot/commands/InfoCommand.java +++ b/src/main/java/me/chayapak1/chomens_bot/commands/InfoCommand.java @@ -71,7 +71,7 @@ public class InfoCommand extends Command { final Bot bot = context.bot; final String action = !context.userInputCommandName.equalsIgnoreCase(this.name) ? // if the input command is not `info` - context.userInputCommandName : // use that as the action (e.g. "discord", "creator") + context.userInputCommandName.toLowerCase() : // use that as the action (e.g. "discord", "creator") context.getString(false, false, true); // else just take the argument of `info` switch (action) {