Reimplementing the chat thingy

This commit is contained in:
Kasper Rynning-Tønnesen
2016-03-31 11:27:23 +02:00
parent 7e7d31d37d
commit 2ae013802f
2 changed files with 3 additions and 3 deletions

File diff suppressed because one or more lines are too long

View File

@@ -3,13 +3,13 @@ var Chat = {
namechange: function(newName)
{
socket.emit("namechange", newName);
//Crypt.set_name(newName);
Crypt.set_name(newName);
},
removename: function()
{
socket.emit("removename");
//Crypt.remove_name();
Crypt.remove_name();
},
chat: function(data)