From 48b674a13dc51850e65b30bec695de8facca985c Mon Sep 17 00:00:00 2001 From: Michael Linder Date: Wed, 20 Sep 2017 19:04:59 -0500 Subject: [PATCH] During bot spawn, set bot to targetable. Fixes issue #657. --- zone/bot.cpp | 2 ++ 1 file changed, 2 insertions(+) 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();