From 22eee601476ef55fd0ee204060166698cab20996 Mon Sep 17 00:00:00 2001 From: nytmyr <53322305+nytmyr@users.noreply.github.com> Date: Sun, 29 Jun 2025 00:12:00 -0500 Subject: [PATCH] [Bots] Fix ^cast resurrects - Was failing stack checks and couldn't be casted. Added bypass. --- common/spdat_bot.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/common/spdat_bot.cpp b/common/spdat_bot.cpp index 5feef7970..3a9ecf71e 100644 --- a/common/spdat_bot.cpp +++ b/common/spdat_bot.cpp @@ -358,6 +358,7 @@ bool RequiresStackCheck(uint16 spell_type) { case BotSpellTypes::CompleteHeal: case BotSpellTypes::PetCompleteHeals: case BotSpellTypes::GroupCompleteHeals: + case BotSpellTypes::Resurrect: return false; default: return true;