chore(client): fix style nits

This commit is contained in:
fallenoak 2025-10-07 21:43:45 -05:00
parent 20518b738b
commit 7d5d56a401
No known key found for this signature in database
GPG Key ID: 7628F8E61AEA070D

View File

@ -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()) {