mirror of
https://github.com/gamedig/node-gamedig.git
synced 2024-11-17 17:25:19 +01:00
17 lines
353 B
JavaScript
17 lines
353 B
JavaScript
|
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;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
});
|