mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-06-10 14:34:32 +02:00
Added hair variation to the db. Turned out the hair highlight color was mis-sized (1 byte not 2) causing an invalid number when a variation was there.
This commit is contained in:
parent
d80e9bed0e
commit
01ba37c50d
3 changed files with 6 additions and 4 deletions
|
@ -76,7 +76,8 @@ namespace FFXIVClassic_Lobby_Server.dataobjects
|
|||
info.tribe = reader.ReadByte();
|
||||
appearance.size = reader.ReadByte();
|
||||
appearance.hairStyle = reader.ReadUInt16();
|
||||
appearance.hairHighlightColor = reader.ReadUInt16();
|
||||
appearance.hairHighlightColor = reader.ReadByte();
|
||||
appearance.hairVariation = reader.ReadByte();
|
||||
appearance.faceType = reader.ReadByte();
|
||||
appearance.characteristics = reader.ReadByte();
|
||||
appearance.characteristicsColor = reader.ReadByte();
|
||||
|
@ -140,7 +141,6 @@ namespace FFXIVClassic_Lobby_Server.dataobjects
|
|||
faceInfo.mouth = appearance.faceMouth;
|
||||
faceInfo.nose = appearance.faceNose;
|
||||
|
||||
|
||||
string location1 = "prv0Inn01\0";
|
||||
string location2 = "defaultTerritory\0";
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue