Core vanilla functionality

The client now understands chat events, command usage events, death events, teleport events, and join/leave events
This commit is contained in:
AlexKvazos
2015-04-29 19:00:49 -05:00
parent 32126cd53d
commit b9cab887f9
6 changed files with 346 additions and 65 deletions
+1
View File
@@ -4,6 +4,7 @@ module.exports = function(socket) {
require('./events/login')(socket);
require('./events/spawn')(socket);
require('./events/message')(socket);
// require('./events/chat')(socket);
require('./events/end')(socket);
};