mirror of
https://github.com/EQEmu/Server.git
synced 2026-02-21 22:02:24 +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());
|
||||
|
||||
/* 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++) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user