mirror of
https://github.com/gamedig/node-gamedig.git
synced 2024-11-03 13:01:04 +01:00
10 lines
221 B
JavaScript
10 lines
221 B
JavaScript
module.exports = require('./quake2').extend({
|
|
init: function() {
|
|
this._super();
|
|
this.pretty = 'Quake 3';
|
|
this.options.port = 27960;
|
|
this.sendHeader = 'getstatus';
|
|
this.responseHeader = 'statusResponse';
|
|
}
|
|
});
|