mirror of
https://github.com/gamedig/node-gamedig.git
synced 2024-11-18 17:50:37 +01:00
20 lines
527 B
JavaScript
20 lines
527 B
JavaScript
|
module.exports = require('./quake2').extend({
|
||
|
init: function() {
|
||
|
this._super();
|
||
|
this.sendHeader = 'getstatus';
|
||
|
this.responseHeader = 'statusResponse';
|
||
|
},
|
||
|
finalizeState: function(state) {
|
||
|
state.name = this.stripColors(state.name);
|
||
|
for(var i in state.raw) {
|
||
|
state.raw[i] = this.stripColors(state.raw[i]);
|
||
|
}
|
||
|
for(var i = 0; i < state.players.length; i++) {
|
||
|
state.players[i].name = this.stripColors(state.players[i].name);
|
||
|
}
|
||
|
},
|
||
|
stripColors: function(str) {
|
||
|
return str.replace(/\^(X.{6}|.)/g,'');
|
||
|
}
|
||
|
});
|