Commit 7fc5949f authored by edo9300's avatar edo9300 Committed by Momobako

Fix chat message receiving (#2054)

parent 4f858ba0
...@@ -675,7 +675,6 @@ void DuelClient::HandleSTOCPacketLan(char* data, unsigned int len) { ...@@ -675,7 +675,6 @@ void DuelClient::HandleSTOCPacketLan(char* data, unsigned int len) {
} }
wchar_t msg[256]; wchar_t msg[256];
BufferIO::CopyWStr(pkt->msg, msg, 256); BufferIO::CopyWStr(pkt->msg, msg, 256);
msg[(len - 3) / 2] = 0;
mainGame->gMutex.Lock(); mainGame->gMutex.Lock();
mainGame->AddChatMsg(msg, player); mainGame->AddChatMsg(msg, player);
mainGame->gMutex.Unlock(); mainGame->gMutex.Unlock();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment