private void processHello(Command command) throws RacetrackException
{
name = command.argument(0);
logger.info("Client authenticated as \"" + name + "\", id = " + id);
sendCommand(new Command("welcome").append(id));
game = server.getGame();
if (!game.join(this)) {
sendCommand(new Command("busy"));
disconnect();
}
}