Core/PacketIO: Updated most packet structures to 9.0.1

This commit is contained in:
Shauren
2020-11-04 21:39:21 +01:00
parent 16b39a448a
commit cab4c87d2d
101 changed files with 3154 additions and 2553 deletions

View File

@@ -2264,11 +2264,11 @@ void Guild::SendEventAwayChanged(ObjectGuid const& memberGuid, bool afk, bool dn
else
member->RemFlag(GUILDMEMBER_STATUS_DND);
WorldPackets::Guild::GuildEventAwayChange awayChange;
awayChange.Guid = memberGuid;
awayChange.AFK = afk;
awayChange.DND = dnd;
BroadcastPacket(awayChange.Write());
WorldPackets::Guild::GuildEventStatusChange statusChange;
statusChange.Guid = memberGuid;
statusChange.AFK = afk;
statusChange.DND = dnd;
BroadcastPacket(statusChange.Write());
}
void Guild::SendEventBankMoneyChanged() const