From 98b34f24b8b27c9e0dd11e210e6934a2e015d25f Mon Sep 17 00:00:00 2001 From: Bluewhale1337 <295648290+Bluewhale1337@users.noreply.github.com> Date: Wed, 9 Sep 2026 17:30:38 +0200 Subject: [PATCH] Fix: Exception for shapeshift queue to allow heals in tree form --- HealBot_Controller_Spells.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/HealBot_Controller_Spells.lua b/HealBot_Controller_Spells.lua index 8f53793..e48abc4 100644 --- a/HealBot_Controller_Spells.lua +++ b/HealBot_Controller_Spells.lua @@ -872,6 +872,10 @@ function HealBot_GetShapeshiftForm() for i=1,forms do local icon,name,active = GetShapeshiftFormInfo(i); if active then + -- Do not unshift from Tree of Life form + + return nil; + end return i; end end