diff options
Diffstat (limited to 'src/gui/chat.cpp')
-rw-r--r-- | src/gui/chat.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/gui/chat.cpp b/src/gui/chat.cpp index 3ef6703c..70b39ae3 100644 --- a/src/gui/chat.cpp +++ b/src/gui/chat.cpp @@ -34,7 +34,6 @@ #include "../log.h" #include "../net/messageout.h" -#include "../net/network.h" #include "../net/protocol.h" ChatWindow::ChatWindow(const std::string &logfile): @@ -222,7 +221,6 @@ char *ChatWindow::chat_send(std::string nick, std::string msg) outMsg.writeShort(packetId); outMsg.writeShort(msg.length() + 4); outMsg.writeString(msg, msg.length()); - writeSet(msg.length() + 4); return ""; } |