Fixed female characters losing their femininity
This commit is contained in:
parent
7dbebb2b9a
commit
21f16e5908
1 changed files with 1 additions and 1 deletions
|
|
@ -96,7 +96,7 @@ namespace TShockAPI.DB
|
|||
playerData.extraSlot = reader.Get<int>("extraSlot");
|
||||
playerData.spawnX = reader.Get<int>("spawnX");
|
||||
playerData.spawnY = reader.Get<int>("spawnY");
|
||||
playerData.skinVariant = reader.Get<int>("skinVariant");
|
||||
playerData.skinVariant = reader.Get<int?>("skinVariant");
|
||||
playerData.hair = reader.Get<int?>("hair");
|
||||
playerData.hairDye = (byte)reader.Get<int>("hairDye");
|
||||
playerData.hairColor = TShock.Utils.DecodeColor(reader.Get<int?>("hairColor"));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue