Core/PacketIO: Updated and enabled CMSG_GUILD_SET_ACHIEVEMENT_TRACKING

This commit is contained in:
DJScias
2015-04-23 19:13:57 +02:00
parent 149ff8da87
commit 69fa522a5b
5 changed files with 29 additions and 14 deletions
@@ -811,3 +811,17 @@ WorldPacket const* WorldPackets::Guild::PlayerSaveGuildEmblem::Write()
return &_worldPacket;
}
void WorldPackets::Guild::GuildSetAchievementTracking::Read()
{
uint32 count;
_worldPacket >> count;
for (uint32 i = 0; i < count; ++i)
{
uint32 value;
_worldPacket >> value;
AchievementIDs.insert(value);
}
}