mirror of
https://github.com/tribufu/node-gamedig
synced 2026-05-06 15:17:36 +00:00
Added pretty much every game ever Tons of new protocols and game definitions Cleaned up and discovered some new tricks in gamespy3 and quake2
12 lines
305 B
JavaScript
12 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;
|
|
}
|
|
});
|