From e0eb14508173307b87e4880f8ef09d519f2225d1 Mon Sep 17 00:00:00 2001 From: Aeadoin <109764533+Aeadoin@users.noreply.github.com> Date: Fri, 17 Feb 2023 10:46:49 -0500 Subject: [PATCH] [Bots] Set Taunt to enabled for SK/Paladin Bots by Default. (#2941) --- zone/bot.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zone/bot.cpp b/zone/bot.cpp index 8cb4a8981..056fcb29b 100644 --- a/zone/bot.cpp +++ b/zone/bot.cpp @@ -77,7 +77,7 @@ Bot::Bot(NPCType *npcTypeData, Client* botOwner) : NPC(npcTypeData, nullptr, glm SetBotCharmer(false); SetPetChooser(false); SetRangerAutoWeaponSelect(false); - SetTaunting(GetClass() == WARRIOR); + SetTaunting(GetClass() == WARRIOR || GetClass() == PALADIN || GetClass() == SHADOWKNIGHT); SetDefaultBotStance(); SetAltOutOfCombatBehavior(GetClass() == BARD); // will need to be updated if more classes make use of this flag