message._caller into lower case

This commit is contained in:
Erik 2021-05-06 20:21:24 +03:00
parent c8bbe2acb7
commit f3e0d39145

View File

@ -377,7 +377,7 @@ class CommandHandler extends Observer {
//Eventually search for custom commands here.
message._caller = commandName; //Used for hidden commands as aliases.
message._caller = commandName.toLowerCase(); //Used for hidden commands as aliases.
return command;
}