Added "Usage: " back when handling InvalidUsageException.

This commit is contained in:
sk89q 2014-06-30 23:04:32 -07:00
parent f0530f9d28
commit 75b1fe6090

View File

@ -231,7 +231,7 @@ public final class CommandManager {
} else {
String message = e.getMessage();
actor.printError(message != null ? message : "The command was not used properly (no more help available).");
actor.printError(e.getSimpleUsageString("/"));
actor.printError("Usage: " + e.getSimpleUsageString("/"));
}
} catch (WrappedCommandException e) {
Throwable t = e.getCause();