mirror of
https://github.com/tribufu/node-gamedig
synced 2026-05-06 15:17:36 +00:00
9 lines
222 B
JavaScript
9 lines
222 B
JavaScript
module.exports = require('./protocols/gamespy3').extend({
|
|
init: function() {
|
|
this._super();
|
|
this.pretty = 'Minecraft';
|
|
this.maxAttempts = 2;
|
|
this.options.port = 25565;
|
|
this.srvRecord = '_minecraft._tcp';
|
|
}
|
|
});
|