[Bug Fix] Resolve logic error in Raid::QueueClients (#2404)

We're checking if they're groupless here, so this should be correct now
This commit is contained in:
Michael Cook (mackal) 2022-09-01 19:48:47 -04:00 committed by GitHub
parent 89fdd842e1
commit 8851b410d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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++) {