fix dumb issue

This commit is contained in:
Erik 2022-11-29 19:34:49 +02:00
parent f1bd031544
commit 2892fd0f04
Signed by untrusted user: Navy.gif
GPG Key ID: 811EC0CD80E7E5FB

View File

@ -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) {