Done flag

This commit is contained in:
boy0001
2015-08-14 03:22:32 +10:00
parent b7fe6ea749
commit 393a85c1bc
11 changed files with 180 additions and 42 deletions

View File

@ -36,6 +36,10 @@ public class CommandManager<T extends CommandCaller> {
this.commands.put(alias.toLowerCase(), command);
}
}
final public Command<T> getCommand(String command) {
return commands.get(command);
}
final public boolean createCommand(final Command<T> command) {
try {