mirror of
https://github.com/gamedig/node-gamedig.git
synced 2024-11-17 17:25:19 +01:00
9 lines
186 B
JavaScript
9 lines
186 B
JavaScript
|
module.exports = require('./quake2').extend({
|
||
|
init: function() {
|
||
|
this._super();
|
||
|
this.port = 27960;
|
||
|
this.sendHeader = 'getstatus';
|
||
|
this.responseHeader = 'statusResponse';
|
||
|
}
|
||
|
});
|