Browse Source

Added use command to CommandListener

remotes/origin/fight-engine
fdai7430 2 years ago
parent
commit
72dc8a87f7
  1. 2
      src/main/java/org/bitbiome/commands/CommandListener.java

2
src/main/java/org/bitbiome/commands/CommandListener.java

@ -14,6 +14,8 @@ public class CommandListener {
commands.put("exit", new QuitCommand()); commands.put("exit", new QuitCommand());
commands.put("quit", new QuitCommand()); commands.put("quit", new QuitCommand());
commands.put("use", new UseCommand());
} }
public HashMap<String, CommandAPI> returnCommands() { public HashMap<String, CommandAPI> returnCommands() {

Loading…
Cancel
Save