From 2892fd0f049e8cc02e20ec7c0fb9dfdf92ca52ee Mon Sep 17 00:00:00 2001 From: "Navy.gif" Date: Tue, 29 Nov 2022 19:34:49 +0200 Subject: [PATCH] fix dumb issue --- structure/Client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/structure/Client.js b/structure/Client.js index a3b6d8d..990b089 100644 --- a/structure/Client.js +++ b/structure/Client.js @@ -106,7 +106,7 @@ class ModmailClient extends Client { const commandName = rawCommand.substring(prefix.length); const command = this.registry.find(commandName); if (!command) return; - message._caller = commandName.toLowerCase(); + message._caller = commandName; if (command.showUsage && !args.length) {