mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 00:02:45 +03:00
chore(client): fix style nits
This commit is contained in:
parent
20518b738b
commit
7d5d56a401
@ -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()) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user