From 389c8617673b8bd81ec88c371bc05b074853d8a5 Mon Sep 17 00:00:00 2001 From: nytmyr <53322305+nytmyr@users.noreply.github.com> Date: Thu, 23 Jan 2025 15:25:52 -0600 Subject: [PATCH] Add back hpmanaend update to bot raid, force timer update to prevent spamming --- zone/bot.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/zone/bot.cpp b/zone/bot.cpp index 3b8eeaab5..d2e89a512 100644 --- a/zone/bot.cpp +++ b/zone/bot.cpp @@ -2144,6 +2144,11 @@ void Bot::AI_Process() SetVerifiedRaid(true); } + if (mana_timer.Check() || send_hp_update_timer.Check()) { + LogTestDebug("{} is sending a hp/mana update", GetCleanName()); + raid->SendHPManaEndPacketsFrom(this); + } + r_group = raid->GetGroup(GetName()); }