From 1cf84c7dfdbe7482166844acf6bacef6c78b9258 Mon Sep 17 00:00:00 2001 From: ackimixs Date: Wed, 3 Apr 2024 21:00:08 +0200 Subject: [PATCH] patch --- TCPServer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TCPServer.cpp b/TCPServer.cpp index ccb8a88..9417b0b 100644 --- a/TCPServer.cpp +++ b/TCPServer.cpp @@ -159,7 +159,7 @@ void TCPServer::handleMessage(const std::string& message, int clientSocket) } if (tokens[2] == "spawn") { // TODO change that to handle spawn point - std::string toSend = "ihm;arduino;set;100,100;-90"; + std::string toSend = "ihm;arduino;set;100,100,-90"; this->broadcastMessage(toSend.c_str(), clientSocket); }