diff --git a/zone/bot.cpp b/zone/bot.cpp index def50981e..91f07d922 100644 --- a/zone/bot.cpp +++ b/zone/bot.cpp @@ -12656,7 +12656,7 @@ void Bot::AssignBotSpellsToTypes(std::vector& AIBot_spells, std::unor } } -std::vector Bot::GatherSpellTargets(bool entire_raid, Mob* target, bool no_clients, bool no_bots, bool no_pets) { +std::vector Bot::GatherSpellTargets(bool entire_raid, Mob* target, bool no_clients, bool no_bots) { std::vector valid_spell_targets; auto is_valid_target = [no_clients, no_bots](Mob* member) { diff --git a/zone/bot.h b/zone/bot.h index c792430a3..87824774a 100644 --- a/zone/bot.h +++ b/zone/bot.h @@ -537,7 +537,7 @@ public: void SetBotTimers(std::vector timers) { bot_timers = timers; } // Targeting - std::vector GatherSpellTargets(bool entireRaid = false, Mob* target = nullptr, bool no_clients = false, bool no_bots = false, bool no_pets = false); + std::vector GatherSpellTargets(bool entireRaid = false, Mob* target = nullptr, bool no_clients = false, bool no_bots = false); bool HasValidAETarget(Bot* caster, uint16 spell_id, uint16 spell_type, Mob* tar); void SetHasLoS(bool has_los) { _hasLoS = has_los; } bool HasLoS() const { return _hasLoS; }