aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2016-05-21 11:25:58 +0200
committerShauren <shauren.trinity@gmail.com>2016-05-21 11:25:58 +0200
commitb426262d1ba634e44829228b9edfce390f8a5080 (patch)
treeadad36d21fd235303df3d8efedd1c7528ad2c4bb
parent9a6c08efa2a502cf6700ede0c5c432965f487854 (diff)
Core/PacketIO: Fixed LFGuildApplications structure
-rw-r--r--src/server/game/Server/Packets/GuildFinderPackets.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Server/Packets/GuildFinderPackets.cpp b/src/server/game/Server/Packets/GuildFinderPackets.cpp
index 137b5f29986..eb2f1178925 100644
--- a/src/server/game/Server/Packets/GuildFinderPackets.cpp
+++ b/src/server/game/Server/Packets/GuildFinderPackets.cpp
@@ -92,8 +92,8 @@ ByteBuffer& operator<<(ByteBuffer& data, WorldPackets::GuildFinder::LFGuildAppli
WorldPacket const* WorldPackets::GuildFinder::LFGuildApplications::Write()
{
- _worldPacket << uint32(Application.size());
_worldPacket << int32(NumRemaining);
+ _worldPacket << uint32(Application.size());
for (LFGuildApplicationData const& application : Application)
_worldPacket << application;