2013-07-10 12:02:48 +02:00
|
|
|
module.exports = require('./quake2').extend({
|
|
|
|
init: function() {
|
|
|
|
this._super();
|
2013-07-10 12:40:41 +02:00
|
|
|
this.options.port = 27960;
|
2013-07-10 12:02:48 +02:00
|
|
|
this.sendHeader = 'getstatus';
|
|
|
|
this.responseHeader = 'statusResponse';
|
|
|
|
}
|
|
|
|
});
|