Core/PacketIO: Updated remaining packet structures to 9.1.5

Port From (https://github.com/TrinityCore/TrinityCore/commit/792721ad6450065ec81da6472c1e2a143ad57341)
This commit is contained in:
hondacrx
2021-11-07 17:23:07 -05:00
parent 01f2e764a6
commit 2f68906ed6
7 changed files with 20 additions and 4 deletions
@@ -666,6 +666,7 @@ namespace Game.Networking.Packets
data.WriteUInt8((byte)Sex);
data.WriteUInt8((byte)ClassID);
data.WriteUInt8(Level);
data.WriteUInt8(Unused915);
data.WriteString(Name);
}
@@ -680,6 +681,7 @@ namespace Game.Networking.Packets
public Gender Sex = Gender.None;
public Class ClassID = Class.None;
public byte Level;
public byte Unused915;
public DeclinedName DeclinedNames = new();
}