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
8 lines
209 B
JavaScript
8 lines
209 B
JavaScript
module.exports = require('./protocols/battlefield').extend({
|
|
init: function() {
|
|
this._super();
|
|
this.pretty = 'Battlefield: Bad Company 2';
|
|
this.options.port = 48888;
|
|
this.isBadCompany2 = true;
|
|
}
|
|
});
|