fix TServer::HandlePosition declaration

it was different from the implementation
This commit is contained in:
Lion Kortlepel
2022-09-14 20:59:07 +02:00
parent 23e9941704
commit 36a1da3218

View File

@@ -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);
};