From f7c4f1ff7591f0fcda90bd357a98af97f840a529 Mon Sep 17 00:00:00 2001 From: Alex King <89047260+Kinglykrab@users.noreply.github.com> Date: Thu, 16 Mar 2023 20:25:45 -0400 Subject: [PATCH] [Cleanup] Remove _baseBotStance from bot.h (#3076) # Notes - This is unused. --- zone/bot.cpp | 1 - zone/bot.h | 1 - 2 files changed, 2 deletions(-) diff --git a/zone/bot.cpp b/zone/bot.cpp index 49d3e6206..6b9bf541c 100644 --- a/zone/bot.cpp +++ b/zone/bot.cpp @@ -8778,7 +8778,6 @@ void Bot::SetDefaultBotStance() { if (GetClass() == WARRIOR) defaultStance = EQ::constants::stanceAggressive; - _baseBotStance = EQ::constants::stancePassive; _botStance = defaultStance; } diff --git a/zone/bot.h b/zone/bot.h index cc6829edc..a648868bd 100644 --- a/zone/bot.h +++ b/zone/bot.h @@ -787,7 +787,6 @@ private: uint32 _lastZoneId; bool _rangerAutoWeaponSelect; EQ::constants::StanceType _botStance; - EQ::constants::StanceType _baseBotStance; unsigned int RestRegenHP; unsigned int RestRegenMana; unsigned int RestRegenEndurance;