Added op, voice, deop, devoice commands to command parser

This commit is contained in:
Sebastian Kaspari 2010-03-09 23:59:40 +01:00
parent 2b895d855c
commit 6ecbac45af
1 changed files with 4 additions and 0 deletions

View File

@ -56,6 +56,10 @@ public class CommandParser
commands.put("echo", new EchoCommand());
commands.put("topic", new TopicCommand());
commands.put("quit", new QuitCommand());
commands.put("op", new OpCommand());
commands.put("voice", new VoiceCommand());
commands.put("deop", new DeopCommand());
commands.put("devoice", new DevoiceCommand());
}
/**