mirror of
https://github.com/araxiaonline/TrinityCore.git
synced 2026-06-21 23:38:54 -04:00
Core/PacketIO: Updated and enabled CMSG_GUILD_SET_ACHIEVEMENT_TRACKING
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user