send only the x and z coordinate to the server

This commit is contained in:
ackimixs
2024-04-09 13:48:35 +02:00
parent b021e975b4
commit cf9103537b
2 changed files with 1 additions and 2 deletions

View File

@@ -31,7 +31,6 @@ void MyClient::handleMessage(const std::string& message)
res += std::to_string(tag.id) + ",";
res += tag.name + ",";
res += std::to_string(pos.first.at<double>(0, 0)) + ",";
res += std::to_string(pos.first.at<double>(1, 0)) + ",";
res += std::to_string(pos.first.at<double>(2, 0)) + ",";
}
}