"cockatrice/src/tab_deck_editor.cpp" did not exist on "579628b4c4cf65c5909da502cf98c691bfb9d603"
Commit b6f3630c authored by ctrlaltca's avatar ctrlaltca
Browse files

Merge pull request #1774 from ctrlaltca/fix_1773

Remove unneeded debug in servatrice
parents 7ec3968c d79d6579
...@@ -608,7 +608,6 @@ Response::ResponseCode Server_ProtocolHandler::cmdJoinRoom(const Command_JoinRoo ...@@ -608,7 +608,6 @@ Response::ResponseCode Server_ProtocolHandler::cmdJoinRoom(const Command_JoinRoo
ServerInfo_ChatMessage chatMessage; ServerInfo_ChatMessage chatMessage;
for (int i = 0; i < chatHistory.size(); ++i) { for (int i = 0; i < chatHistory.size(); ++i) {
chatMessage = chatHistory.at(i); chatMessage = chatHistory.at(i);
qDebug() << QString::fromStdString(chatMessage.message()).simplified();
Event_RoomSay roomChatHistory; Event_RoomSay roomChatHistory;
roomChatHistory.set_message(chatMessage.sender_name() + ": " + chatMessage.message()); roomChatHistory.set_message(chatMessage.sender_name() + ": " + chatMessage.message());
roomChatHistory.set_message_type(Event_RoomSay::ChatHistory); roomChatHistory.set_message_type(Event_RoomSay::ChatHistory);
......
Supports Markdown
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