Skip to content
This repository has been archived by the owner on Oct 14, 2023. It is now read-only.

Commit

Permalink
Changes -> subcommands are now case-insensitive
Browse files Browse the repository at this point in the history
  • Loading branch information
EinfacheSache committed Jul 7, 2023
1 parent da6df88 commit 9980c70
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ private void command(ExecutorBuilder executorBuilder) {
return;
}

switch (args[0]) {
switch (args[0].toLowerCase()) {

case "setup": {
setup(sender);
Expand Down

0 comments on commit 9980c70

Please sign in to comment.