public enum BaseCommand.CommandResult
Represents the success status of a command. Returned by
.org.lazywizard.console.BaseCommand$runCommand(java.lang.String,org.lazywizard.console.BaseCommand.CommandContext)
org.lazywizard.console.BaseCommand.CommandResult SUCCESS
Command ran successfully.
org.lazywizard.console.BaseCommand.CommandResult BAD_SYNTAX
Command had the wrong arguments passed in. Returning this will automatically display the syntax field from your commands.csv, so you usually don't need to include an error message.
org.lazywizard.console.BaseCommand.CommandResult WRONG_CONTEXT
Command was used in the wrong context (ex: entering a campaign-only command in a mission).
org.lazywizard.console.BaseCommand.CommandResult ERROR
Something went wrong while executing the command.