Remove debug message

This commit is contained in:
2024-04-11 16:12:04 +02:00
parent ad325a5603
commit 7ce387c144

View File

@@ -237,7 +237,6 @@ void MainWindow::handleMessage(const std::string& message)
else if (list[2] == "set pos")
{
std::vector<std::string> msg = TCPSocket::split(list[3], ",");
std::cout << "X : " << msg[0] << " Y : " << msg[1] << std::endl;
this->inGame->updatePos(msg[0], msg[1]);
}
}