node-gamedig/protocols/quake3.js

9 lines
186 B
JavaScript
Raw Normal View History

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