Commands are no longer CaSe-SeNsAtIvE which was a very annoying "issue" with the current build of Factions

This commit is contained in:
ItsMonkeyyy 2016-02-25 20:28:01 -08:00
parent d558ec37f0
commit 90f3e0140d
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ public abstract class MCommand<T extends MPlugin> {
// Is there a matching sub command?
if (args.size() > 0) {
for (MCommand<?> subCommand : this.subCommands) {
if (subCommand.aliases.contains(args.get(0))) {
if (subCommand.aliases.contains(args.get(0).toLowerCase())) {
args.remove(0);
commandChain.add(this);
subCommand.execute(sender, args, commandChain);