Commands are no longer CaSe-SeNsAtIvE which was a very annoying "issue" with the current build of Factions
This commit is contained in:
parent
d558ec37f0
commit
90f3e0140d
@ -110,7 +110,7 @@ public abstract class MCommand<T extends MPlugin> {
|
|||||||
// Is there a matching sub command?
|
// Is there a matching sub command?
|
||||||
if (args.size() > 0) {
|
if (args.size() > 0) {
|
||||||
for (MCommand<?> subCommand : this.subCommands) {
|
for (MCommand<?> subCommand : this.subCommands) {
|
||||||
if (subCommand.aliases.contains(args.get(0))) {
|
if (subCommand.aliases.contains(args.get(0).toLowerCase())) {
|
||||||
args.remove(0);
|
args.remove(0);
|
||||||
commandChain.add(this);
|
commandChain.add(this);
|
||||||
subCommand.execute(sender, args, commandChain);
|
subCommand.execute(sender, args, commandChain);
|
||||||
|
Loading…
Reference in New Issue
Block a user