From 29247a0f4564faf577ddf1160a53ebe9141f4828 Mon Sep 17 00:00:00 2001 From: Aeadoin <109764533+Aeadoin@users.noreply.github.com> Date: Sun, 27 Nov 2022 15:49:38 -0500 Subject: [PATCH] [Bot] Add Support for Bots to receive Auras, and other AoE Buffs. (#2586) --- zone/entity.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zone/entity.cpp b/zone/entity.cpp index ab399de85..bbf5f0878 100644 --- a/zone/entity.cpp +++ b/zone/entity.cpp @@ -2922,7 +2922,7 @@ void EntityList::ScanCloseMobs( for (auto &e : mob_list) { auto mob = e.second; - if (!mob->IsNPC() && !mob->IsClient()) { + if (!mob->IsNPC() && !mob->IsClient() && !mob->IsBot() && !mob->IsMerc()) { continue; }