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
@@ -148,10 +148,13 @@ namespace Game.Networking.Packets
public override void Read()
{
Name = _worldPacket.ReadString(_worldPacket.ReadBits<uint>(9));
uint nameLength = _worldPacket.ReadBits<uint>(9);
AccountGUID = _worldPacket.ReadPackedGuid();
Name = _worldPacket.ReadString(nameLength);
}
public string Name;
public ObjectGuid AccountGUID;
}
public class DelIgnore : ClientPacket