mirror of
https://github.com/EQEmu/Server.git
synced 2026-04-03 13:22:28 +00:00
[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:
parent
89fdd842e1
commit
8851b410d2
@ -1768,7 +1768,7 @@ void Raid::QueueClients(Mob *sender, const EQApplicationPacket *app, bool ack_re
|
|||||||
uint32 group_id = GetGroup(sender->CastToClient());
|
uint32 group_id = GetGroup(sender->CastToClient());
|
||||||
|
|
||||||
/* If this is a group only packet and we're not in a group -- return */
|
/* 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;
|
return;
|
||||||
|
|
||||||
for (uint32 i = 0; i < MAX_RAID_MEMBERS; i++) {
|
for (uint32 i = 0; i < MAX_RAID_MEMBERS; i++) {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user