mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-11-04 20:06:06 +00:00
Fixed issue where the use of non-existent subcommands had no response.
This commit is contained in:
parent
d96d3cf8bc
commit
5347cd4e34
@ -41,9 +41,9 @@ public class SimpleDispatcherCommand extends SimpleDispatcher implements Command
|
||||
|
||||
@Override
|
||||
public void call(CommandContext context) throws CommandException {
|
||||
if (context.argsLength() >= 1) {
|
||||
super.call(context.getRemainingString(0), context.getLocals());
|
||||
} else {
|
||||
boolean success = context.argsLength() >= 1 && super.call(context.getRemainingString(0), context.getLocals()) != null;
|
||||
|
||||
if (!success) {
|
||||
Set<String> aliases = getPrimaryAliases();
|
||||
|
||||
if (aliases.size() == 0) {
|
||||
|
Loading…
Reference in New Issue
Block a user