String p = _command.substring(6).trim();
int idx = p.indexOf(' ');
if (idx < 0)
player.processQuestEvent(p, "");
else
player.processQuestEvent(p.substring(0, idx), p.substring(idx).trim());
}
}
catch (Exception e)
{
_log.log(Level.WARNING, "Bad RequestBypassToServer: ", e);