Reverted MCommand because 9ce8467224 commit broke it :/
This commit is contained in:
@@ -99,11 +99,7 @@ public abstract class MCommand<T extends MPlugin> {
|
|||||||
}
|
}
|
||||||
this.args = args;
|
this.args = args;
|
||||||
this.commandChain = commandChain;
|
this.commandChain = commandChain;
|
||||||
if (validCall(this.sender, this.args)) {
|
|
||||||
// This is always true but anyway
|
|
||||||
if (!this.isEnabled()) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
// 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) {
|
||||||
@@ -115,9 +111,15 @@ public abstract class MCommand<T extends MPlugin> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
|
if (!validCall(this.sender, this.args)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!this.isEnabled()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
perform();
|
perform();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user