[Bots] Fix ^cast resurrects (#4958)

- Was failing stack checks and couldn't be casted. Added bypass.
This commit is contained in:
nytmyr 2025-06-29 09:19:00 -05:00 committed by GitHub
parent 585ed3bd25
commit fc470d5f83
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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;