node-gamedig/protocols/quake3.js
Michael Morrison 8552d0674f initial commit
2013-07-10 05:02:48 -05:00

8 lines
186 B
JavaScript

module.exports = require('./quake2').extend({
init: function() {
this._super();
this.port = 27960;
this.sendHeader = 'getstatus';
this.responseHeader = 'statusResponse';
}
});