From 1d0ca78e2d09d2e29e7015a07070e310baa9b554 Mon Sep 17 00:00:00 2001 From: nytmyr <53322305+nytmyr@users.noreply.github.com> Date: Sun, 1 Dec 2024 23:34:40 -0600 Subject: [PATCH] remove unused functions --- common/spdat.cpp | 8 -------- zone/bot.h | 2 -- 2 files changed, 10 deletions(-) diff --git a/common/spdat.cpp b/common/spdat.cpp index 5c8064f8c..e9aec626c 100644 --- a/common/spdat.cpp +++ b/common/spdat.cpp @@ -2954,14 +2954,6 @@ bool IsBotSpellTypeInnate(uint16 spellType) { return false; } -bool IsBotSpellType(uint16 spellType) { - if (IsBotSpellTypeDetrimental(spellType) && IsBotSpellTypeBeneficial(spellType) && IsBotSpellTypeInnate(spellType)) { - return true; - } - - return false; -} - bool IsAEBotSpellType(uint16 spellType) { switch (spellType) { case BotSpellTypes::AEDebuff: diff --git a/zone/bot.h b/zone/bot.h index c8f6e4a8e..bf785cfc5 100644 --- a/zone/bot.h +++ b/zone/bot.h @@ -991,8 +991,6 @@ public: // Public "Refactor" Methods static bool CheckCampSpawnConditions(Client* c); - inline bool CommandedDoSpellCast(int32 i, Mob* tar, int32 mana_cost) { return AIDoSpellCast(i, tar, mana_cost); } - protected: void BotMeditate(bool isSitting); bool CheckBotDoubleAttack(bool Triple = false);