mirror of
https://github.com/Threnklyn/MinecraftChat.git
synced 2026-05-18 20:33:28 +02:00
b9cab887f9
The client now understands chat events, command usage events, death events, teleport events, and join/leave events
11 lines
263 B
JavaScript
11 lines
263 B
JavaScript
module.exports = function(socket) {
|
|
|
|
// bind all listeners to the bot
|
|
require('./events/login')(socket);
|
|
require('./events/spawn')(socket);
|
|
require('./events/message')(socket);
|
|
// require('./events/chat')(socket);
|
|
require('./events/end')(socket);
|
|
|
|
};
|