mirror of
https://github.com/gamedig/node-gamedig.git
synced 2024-11-18 17:50:37 +01:00
9 lines
199 B
JavaScript
9 lines
199 B
JavaScript
|
module.exports = require('./protocols/gamespy3').extend({
|
||
|
init: function() {
|
||
|
this._super();
|
||
|
this.noChallenge = true;
|
||
|
this.pretty = 'Battlefield 2';
|
||
|
this.options.port = 29900;
|
||
|
}
|
||
|
});
|