diff --git a/zone/bot.cpp b/zone/bot.cpp index c78c41d62..a2e7a2fec 100644 --- a/zone/bot.cpp +++ b/zone/bot.cpp @@ -2841,6 +2841,8 @@ void Bot::Spawn(Client* botCharacterOwner) { FaceTarget(botCharacterOwner); UpdateEquipmentLight(); UpdateActiveLight(); + + this->m_targetable = true; entity_list.AddBot(this, true, true); // Load pet LoadPet(); diff --git a/zone/groups.cpp b/zone/groups.cpp index d72b71c30..a7e05bf49 100644 --- a/zone/groups.cpp +++ b/zone/groups.cpp @@ -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;