From fc470d5f836dc6eb6a2974a3891ceeff82791edf Mon Sep 17 00:00:00 2001 From: nytmyr <53322305+nytmyr@users.noreply.github.com> Date: Sun, 29 Jun 2025 09:19:00 -0500 Subject: [PATCH] [Bots] Fix ^cast resurrects (#4958) - 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;