mirror of
https://github.com/EQEmu/Server.git
synced 2026-03-29 04:12:24 +00:00
Ignore bots during group position update. Fixes zone.exe crash when a client gets too far away from their bots.
This commit is contained in:
parent
48b674a13d
commit
78759add4a
@ -2471,6 +2471,9 @@ void Group::QueueClients(Mob *sender, const EQApplicationPacket *app, bool ack_r
|
|||||||
if (!members[i])
|
if (!members[i])
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
if (!members[i]->IsClient())
|
||||||
|
continue;
|
||||||
|
|
||||||
if (ignore_sender && members[i] == sender)
|
if (ignore_sender && members[i] == sender)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user