mirror of
https://github.com/araxiaonline/TrinityCore.git
synced 2026-06-16 21:20:01 -04:00
Core/PacketIO: Updated packet structures to 8.0.1
This commit is contained in:
@@ -117,8 +117,8 @@ ByteBuffer& operator<<(ByteBuffer& data, WorldPackets::Who::WhoResponse const& r
|
||||
data.WriteBits(response.Entries.size(), 6);
|
||||
data.FlushBits();
|
||||
|
||||
for (size_t i = 0; i < response.Entries.size(); ++i)
|
||||
data << response.Entries[i];
|
||||
for (WorldPackets::Who::WhoEntry const& whoEntry : response.Entries)
|
||||
data << whoEntry;
|
||||
|
||||
return data;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user