node-gamedig/games/minecraft.js

12 lines
249 B
JavaScript
Raw Normal View History

var dns = require('dns');
module.exports = require('./protocols/gamespy3').extend({
2013-07-10 12:02:48 +02:00
init: function() {
this._super();
this.pretty = 'Minecraft';
2013-07-10 12:02:48 +02:00
this.maxAttempts = 2;
2013-07-10 12:40:41 +02:00
this.options.port = 25565;
this.srvRecord = '_minecraft._tcp';
2013-07-10 12:02:48 +02:00
}
});