mirror of
https://github.com/gamedig/node-gamedig.git
synced 2024-11-18 17:50:37 +01:00
13 lines
305 B
JavaScript
13 lines
305 B
JavaScript
|
// this was assembled from old docs and not tested
|
||
|
// hopefully it still works
|
||
|
|
||
|
module.exports = require('./protocols/doom3').extend({
|
||
|
init: function() {
|
||
|
this._super();
|
||
|
this.pretty = 'Wolfenstein 2009';
|
||
|
this.hasSpaceBeforeClanTag = true;
|
||
|
this.hasClanTag = true;
|
||
|
this.hasTypeFlag = true;
|
||
|
}
|
||
|
});
|