mirror of
https://github.com/EQEmu/Server.git
synced 2026-03-28 03:12:28 +00:00
[Fix] Regression in World SendEmoteMessageRaw (#4837)
This commit is contained in:
parent
60a2dd8616
commit
5babc864b9
@ -912,8 +912,9 @@ bool ZSList::SendPacketToZonesWithGuild(uint32 guild_id, ServerPacket* pack)
|
|||||||
|
|
||||||
bool ZSList::SendPacketToZonesWithGMs(ServerPacket* pack)
|
bool ZSList::SendPacketToZonesWithGMs(ServerPacket* pack)
|
||||||
{
|
{
|
||||||
|
auto servers = client_list.GetZoneServersWithGMs();
|
||||||
for (auto const &z: zone_server_list) {
|
for (auto const &z: zone_server_list) {
|
||||||
for (auto const &server_id: client_list.GetZoneServersWithGMs()) {
|
for (auto const &server_id: servers) {
|
||||||
if (z->GetID() == server_id && z->GetZoneID() > 0) {
|
if (z->GetID() == server_id && z->GetZoneID() > 0) {
|
||||||
z->SendPacket(pack);
|
z->SendPacket(pack);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user