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
No known key found for this signature in database
GPG Key ID: 4322FF2B4C71259B

View File

@ -38,5 +38,5 @@ private:
static bool ShouldSpawn(TClient& c, const std::string& CarJson, int ID); static bool ShouldSpawn(TClient& c, const std::string& CarJson, int ID);
static bool IsUnicycle(TClient& c, const std::string& CarJson); static bool IsUnicycle(TClient& c, const std::string& CarJson);
static void Apply(TClient& c, int VID, const std::string& pckt); 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);
}; };