mirror of
https://github.com/EQEmu/Server.git
synced 2026-09-03 01:06:36 +00:00
[Crash] Fixes Crash when Zoning with XTarget when Bots are in group. (#3126)
This commit is contained in:
+2
-2
@@ -1952,10 +1952,10 @@ void Raid::QueueClients(Mob *sender, const EQApplicationPacket *app, bool ack_re
|
||||
if (!members[i].member) {
|
||||
continue;
|
||||
}
|
||||
if (!members[i].member->IsClient()) {
|
||||
if (members[i].IsBot) {
|
||||
continue;
|
||||
}
|
||||
if (members[i].IsBot) {
|
||||
if (!members[i].member->IsClient()) {
|
||||
continue;
|
||||
}
|
||||
if (ignore_sender && members[i].member == sender) {
|
||||
|
||||
Reference in New Issue
Block a user