From 74e940f41c7155f552a8e3a0c026e6f8c06521ad Mon Sep 17 00:00:00 2001 From: Bluewhale1337 <295648290+Bluewhale1337@users.noreply.github.com> Date: Wed, 9 Sep 2026 17:32:18 +0200 Subject: [PATCH] fix: prevent shapeshift cancellation while in Tree of Life or Healing Way forms --- HealBot_Controller_Spells.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HealBot_Controller_Spells.lua b/HealBot_Controller_Spells.lua index e48abc4..c1db686 100644 --- a/HealBot_Controller_Spells.lua +++ b/HealBot_Controller_Spells.lua @@ -873,7 +873,7 @@ function HealBot_GetShapeshiftForm() local icon,name,active = GetShapeshiftFormInfo(i); if active then -- Do not unshift from Tree of Life form - + if icon and (string.find(string.lower(icon), "treeoflife") or string.find(string.lower(icon), "healingway")) then return nil; end return i;