}
if (command != null) {
if (this.applets.containsKey(command)) {
String[] args = this.parseArgs(unparsedArgs);
BotApplet applet = this.applets.get(command);
if (args == null) {
channel.write("Mismatched quotes in argument");
} else {
try {
applet.run(channel, from, command, args, unparsedArgs);
} catch (Exception e) {
log.error("applet threw exception", e);
}
}
} else if (message.startsWith(myNick + ": ")) {