Core/PacketIO: Updated remaining packet structures to 9.1.5
Port From (https://github.com/TrinityCore/TrinityCore/commit/792721ad6450065ec81da6472c1e2a143ad57341)
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user