From 2b9c4dd54967660b484c863a1ee4167a0ece9e25 Mon Sep 17 00:00:00 2001 From: nytmyr <53322305+nytmyr@users.noreply.github.com> Date: Fri, 12 Dec 2025 21:31:33 -0600 Subject: [PATCH] [Bots] Allow melee to sit to med/heal when out of combat --- 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...