Core/DataStores: Updated db2 structures to 8.2.5
Port From (https://github.com/TrinityCore/TrinityCore/commit/3ac790287aba5f7d7c3bccf79e608de9119e461a)
This commit is contained in:
@@ -35,7 +35,7 @@ namespace Game.Network.Packets
|
||||
uint count = _worldPacket.ReadBits<uint>(13);
|
||||
for (uint i = 0; i < count; ++i)
|
||||
{
|
||||
Queries.Add(new DBQueryRecord(_worldPacket.ReadPackedGuid(), _worldPacket.ReadUInt32()));
|
||||
Queries.Add(new DBQueryRecord(_worldPacket.ReadUInt32()));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -44,13 +44,11 @@ namespace Game.Network.Packets
|
||||
|
||||
public struct DBQueryRecord
|
||||
{
|
||||
public DBQueryRecord(ObjectGuid guid, uint recordId)
|
||||
public DBQueryRecord(uint recordId)
|
||||
{
|
||||
GUID = guid;
|
||||
RecordID = recordId;
|
||||
}
|
||||
|
||||
public ObjectGuid GUID;
|
||||
public uint RecordID;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user