From 6c057308da66754b44000c665391e766347c16f7 Mon Sep 17 00:00:00 2001 From: nytmyr <53322305+nytmyr@users.noreply.github.com> Date: Sun, 14 Dec 2025 01:29:06 -0600 Subject: [PATCH] [Bots] Allow melee to sit to med/heal when out of combat (#5036) --- zone/bot.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/zone/bot.cpp b/zone/bot.cpp index d0d83fbc8..a702c5e5a 100644 --- a/zone/bot.cpp +++ b/zone/bot.cpp @@ -2601,6 +2601,8 @@ void Bot::DoOutOfCombatChecks(Client* bot_owner, Mob* follow_mob, float leash_di if (GetClass() == Class::Bard && AI_HasSpells() && TryBardMovementCasts()) { return; } + + TryMeditate(); } // This is as close as I could get without modifying the aggro mechanics and making it an expensive process...