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:
Michael Linder 2017-09-20 19:06:09 -05:00
parent 48b674a13d
commit 78759add4a

View File

@ -2471,6 +2471,9 @@ void Group::QueueClients(Mob *sender, const EQApplicationPacket *app, bool ack_r
if (!members[i])
continue;
if (!members[i]->IsClient())
continue;
if (ignore_sender && members[i] == sender)
continue;