From 8851b410d23282d18a201eb444bbac99643ab306 Mon Sep 17 00:00:00 2001 From: "Michael Cook (mackal)" <277429+mackal@users.noreply.github.com> Date: Thu, 1 Sep 2022 19:48:47 -0400 Subject: [PATCH] [Bug Fix] Resolve logic error in Raid::QueueClients (#2404) We're checking if they're groupless here, so this should be correct now --- zone/raids.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zone/raids.cpp b/zone/raids.cpp index dd8c8ede1..f66929785 100644 --- a/zone/raids.cpp +++ b/zone/raids.cpp @@ -1768,7 +1768,7 @@ void Raid::QueueClients(Mob *sender, const EQApplicationPacket *app, bool ack_re uint32 group_id = GetGroup(sender->CastToClient()); /* If this is a group only packet and we're not in a group -- return */ - if (!group_id == 0xFFFFFFFF && group_only) + if (group_id == 0xFFFFFFFF && group_only) return; for (uint32 i = 0; i < MAX_RAID_MEMBERS; i++) {