From 7d5d56a401e2c51e0b5a397ce865e608ba3d241b Mon Sep 17 00:00:00 2001 From: fallenoak Date: Tue, 7 Oct 2025 21:43:45 -0500 Subject: [PATCH] chore(client): fix style nits --- src/client/ClientHandlers.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/client/ClientHandlers.cpp b/src/client/ClientHandlers.cpp index b6812b8..f53e215 100644 --- a/src/client/ClientHandlers.cpp +++ b/src/client/ClientHandlers.cpp @@ -17,15 +17,14 @@ void LoadNewWorld(const void* eventData, void* param) { int32_t LoginVerifyWorldHandler(void* param, NETMESSAGE msgId, uint32_t time, CDataStore* msg) { uint32_t zoneID; - C3Vector position = { 0.0f, 0.0f, 0.0f }; - float facing; - msg->Get(zoneID); + C3Vector position = { 0.0f, 0.0f, 0.0f }; msg->Get(position.x); msg->Get(position.y); msg->Get(position.z); + float facing; msg->Get(facing); if (zoneID == ClntObjMgrGetMapID()) {