mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 16:22: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) {
|
int32_t LoginVerifyWorldHandler(void* param, NETMESSAGE msgId, uint32_t time, CDataStore* msg) {
|
||||||
uint32_t zoneID;
|
uint32_t zoneID;
|
||||||
C3Vector position = { 0.0f, 0.0f, 0.0f };
|
|
||||||
float facing;
|
|
||||||
|
|
||||||
msg->Get(zoneID);
|
msg->Get(zoneID);
|
||||||
|
|
||||||
|
C3Vector position = { 0.0f, 0.0f, 0.0f };
|
||||||
msg->Get(position.x);
|
msg->Get(position.x);
|
||||||
msg->Get(position.y);
|
msg->Get(position.y);
|
||||||
msg->Get(position.z);
|
msg->Get(position.z);
|
||||||
|
|
||||||
|
float facing;
|
||||||
msg->Get(facing);
|
msg->Get(facing);
|
||||||
|
|
||||||
if (zoneID == ClntObjMgrGetMapID()) {
|
if (zoneID == ClntObjMgrGetMapID()) {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user