mirror of
https://github.com/gamedig/node-gamedig.git
synced 2024-11-18 17:50:37 +01:00
9 lines
181 B
JavaScript
9 lines
181 B
JavaScript
|
module.exports = require('./protocols/doom3').extend({
|
||
|
init: function() {
|
||
|
this._super();
|
||
|
this.pretty = 'Quake 4';
|
||
|
this.hasClanTag = true;
|
||
|
this.options.port = 28004;
|
||
|
}
|
||
|
});
|