diff -r 95d7aab0df3f -r 15a446307993 netserver/HWProto.hs --- a/netserver/HWProto.hs Fri Jan 02 19:49:04 2009 +0000 +++ b/netserver/HWProto.hs Fri Jan 02 19:54:23 2009 +0000 @@ -219,6 +219,9 @@ handleCmd_noRoom client clients rooms ["JOIN", roomName] = handleCmd_noRoom client clients rooms ["JOIN", roomName, ""] +handleCmd_noRoom client _ _ ["CHAT_STRING", msg] = + (noChangeClients, noChangeRooms, answerChatString (nick client) msg) + handleCmd_noRoom _ _ _ _ = (noChangeClients, noChangeRooms, answerBadCmd)