From 6b5b19a8cf8af79faebadd15bbafbd885cbb829f Mon Sep 17 00:00:00 2001 From: nytmyr <53322305+nytmyr@users.noreply.github.com> Date: Tue, 28 Jan 2025 23:11:09 -0600 Subject: [PATCH] Add default delay to cures --- zone/mob_bot.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/zone/mob_bot.cpp b/zone/mob_bot.cpp index bc5f90f8b..297c9f6a1 100644 --- a/zone/mob_bot.cpp +++ b/zone/mob_bot.cpp @@ -353,6 +353,12 @@ uint16 Mob::GetDefaultSpellDelay(uint16 spell_type, uint8 stance) { case BotSpellTypes::HoTHeals: case BotSpellTypes::PetHoTHeals: return 22000; + case BotSpellTypes::Cure: + return 2000; + case BotSpellTypes::GroupCures: + return 3000; + case BotSpellTypes::PetCures: + return 5000; case BotSpellTypes::AEDoT: case BotSpellTypes::DOT: switch (stance) {