From 36a1da3218a1fed0e531de35f88421da79dc9f19 Mon Sep 17 00:00:00 2001 From: Lion Kortlepel Date: Wed, 14 Sep 2022 20:59:07 +0200 Subject: [PATCH] fix TServer::HandlePosition declaration it was different from the implementation --- include/TServer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/TServer.h b/include/TServer.h index 698835a..cf7891a 100644 --- a/include/TServer.h +++ b/include/TServer.h @@ -38,5 +38,5 @@ private: static bool ShouldSpawn(TClient& c, const std::string& CarJson, int ID); static bool IsUnicycle(TClient& c, const std::string& CarJson); static void Apply(TClient& c, int VID, const std::string& pckt); - static void HandlePosition(TClient& c, std::string Packet); + static void HandlePosition(TClient& c, const std::string& Packet); };