mirror of
https://github.com/gamedig/node-gamedig.git
synced 2024-11-03 13:01:04 +01:00
12 lines
249 B
JavaScript
12 lines
249 B
JavaScript
var dns = require('dns');
|
|
|
|
module.exports = require('./protocols/gamespy3').extend({
|
|
init: function() {
|
|
this._super();
|
|
this.pretty = 'Minecraft';
|
|
this.maxAttempts = 2;
|
|
this.options.port = 25565;
|
|
this.srvRecord = '_minecraft._tcp';
|
|
}
|
|
});
|