mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 00:02:45 +03:00
feat(component): rename field for clarity
This commit is contained in:
parent
8b9b943ed8
commit
561840c01a
@ -12,7 +12,7 @@ struct ComponentData {
|
|||||||
int32_t sexID = 0;
|
int32_t sexID = 0;
|
||||||
int32_t classID = 0;
|
int32_t classID = 0;
|
||||||
int32_t hairColorID = 0;
|
int32_t hairColorID = 0;
|
||||||
int32_t skinID = 0;
|
int32_t skinColorID = 0;
|
||||||
int32_t faceID = 0;
|
int32_t faceID = 0;
|
||||||
int32_t facialHairStyleID = 0;
|
int32_t facialHairStyleID = 0;
|
||||||
int32_t hairStyleID = 0;
|
int32_t hairStyleID = 0;
|
||||||
|
|||||||
@ -186,7 +186,7 @@ void CCharacterSelection::ShowCharacter() {
|
|||||||
ComponentData componentData = {};
|
ComponentData componentData = {};
|
||||||
componentData.raceID = character->info.raceID;
|
componentData.raceID = character->info.raceID;
|
||||||
componentData.sexID = character->info.sexID;
|
componentData.sexID = character->info.sexID;
|
||||||
componentData.skinID = character->info.skinID;
|
componentData.skinColorID = character->info.skinColorID;
|
||||||
componentData.faceID = character->info.faceID;
|
componentData.faceID = character->info.faceID;
|
||||||
componentData.hairStyleID = character->info.hairStyleID;
|
componentData.hairStyleID = character->info.hairStyleID;
|
||||||
componentData.hairColorID = character->info.hairColorID;
|
componentData.hairColorID = character->info.hairColorID;
|
||||||
|
|||||||
@ -1208,7 +1208,7 @@ struct CHARACTER_INFO {
|
|||||||
uint8_t raceID;
|
uint8_t raceID;
|
||||||
uint8_t classID;
|
uint8_t classID;
|
||||||
uint8_t sexID;
|
uint8_t sexID;
|
||||||
uint8_t skinID;
|
uint8_t skinColorID;
|
||||||
uint8_t faceID;
|
uint8_t faceID;
|
||||||
uint8_t hairStyleID;
|
uint8_t hairStyleID;
|
||||||
uint8_t hairColorID;
|
uint8_t hairColorID;
|
||||||
|
|||||||
@ -222,7 +222,7 @@ int32_t RealmConnection::HandleCharEnum(uint32_t msgId, uint32_t time, CDataStor
|
|||||||
msg->Get(character.classID);
|
msg->Get(character.classID);
|
||||||
msg->Get(character.sexID);
|
msg->Get(character.sexID);
|
||||||
|
|
||||||
msg->Get(character.skinID);
|
msg->Get(character.skinColorID);
|
||||||
msg->Get(character.faceID);
|
msg->Get(character.faceID);
|
||||||
msg->Get(character.hairStyleID);
|
msg->Get(character.hairStyleID);
|
||||||
msg->Get(character.hairColorID);
|
msg->Get(character.hairColorID);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user