mirror of
https://github.com/tribufu/node-gamedig
synced 2026-05-06 07:07:33 +00:00
8 lines
186 B
JavaScript
8 lines
186 B
JavaScript
module.exports = require('./quake2').extend({
|
|
init: function() {
|
|
this._super();
|
|
this.port = 27960;
|
|
this.sendHeader = 'getstatus';
|
|
this.responseHeader = 'statusResponse';
|
|
}
|
|
});
|