} else {
final String[] args = callback.getMessage().split(" ");
final String text = Util.removeArg0(callback.getMessage());
final String[] pArgs = text.split(" ");
Command cmd = Commands.getCommand(args[0]);
if (cmd != Commands.unknown) {
response = cmd.call(Bot.this, callback.getChatterID(), pArgs, text);
}
}
steamFriends.sendChatRoomMessage(callback.getChatRoomID(), EChatEntryType.ChatMsg, response);
}
}