add warsow

This commit is contained in:
Michael Morrison 2013-07-10 10:47:23 -05:00
parent a777ec79e1
commit 935f61c4ad
3 changed files with 33 additions and 8 deletions

16
protocols/warsow.js Normal file
View file

@ -0,0 +1,16 @@
module.exports = require('./quake3').extend({
init: function() {
this._super();
this.options.port = 44400;
},
prepState: function(state) {
this._super(state);
if(state.players) {
for(var i = 0; i < state.players.length; i++) {
var player = state.players[i];
player.team = player.address;
delete player.address;
}
}
}
});