Core/Packets: corrected initial bytebuffer size for loot response packet

This commit is contained in:
Ovahlord
2022-02-03 00:43:12 +01:00
parent ca35e20c55
commit 4db2d16f2e

View File

@@ -109,7 +109,7 @@ namespace WorldPackets
class LootResponse final : public ServerPacket
{
public:
LootResponse() : ServerPacket(SMSG_LOOT_RESPONSE, 3) { }
LootResponse() : ServerPacket(SMSG_LOOT_RESPONSE, 100) { }
WorldPacket const* Write() override;