mirror of
https://github.com/Threnklyn/MinecraftChat.git
synced 2026-05-18 20:33:28 +02:00
16 lines
294 B
JavaScript
Executable File
16 lines
294 B
JavaScript
Executable File
var mineflayer = require('mineflayer');
|
|
|
|
|
|
module.exports = function(io) {
|
|
|
|
io.on('connection', function(socket) {
|
|
|
|
// bind all events to the socket
|
|
require('./events/connection')(socket);
|
|
require('./events/disconnection')(socket);
|
|
require('./events/chat')(socket);
|
|
|
|
});
|
|
|
|
};
|