Fixed issue where the use of non-existent subcommands had no response.

This commit is contained in:
sk89q 2014-06-27 20:00:02 -07:00
parent d96d3cf8bc
commit 5347cd4e34

View File

@ -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) {