fixed problem when user disconnected

This commit is contained in:
Jeena Paradies 2012-07-14 00:04:41 +02:00
parent e751210345
commit 7d0df79ac8
8 changed files with 73 additions and 33 deletions

View file

@ -70,6 +70,10 @@ define(requires,
this.inputControlUnit = new InputControlUnit(this.me, this);
}
ClientProcessor.prototype.userIdLeft = function(userId) {
// body...
};
ClientProcessor.prototype.sendGameCommand = function(command, options) {
this.clientGame.sendGameCommand(command, options);
}

View file

@ -67,6 +67,11 @@ define(requires, function(PhysicsEngine, Player, Box2D, Level, InputController,
}
}
ServerProcessor.prototype.userIdLeft = function(id) {
var player = this.players[id].player;
player.destroy();
}
ServerProcessor.prototype.updateWorld = function() {
var update = {};