diff --git a/HealBot_Controller_Spells.lua b/HealBot_Controller_Spells.lua index b05015b..0ee9d6c 100644 --- a/HealBot_Controller_Spells.lua +++ b/HealBot_Controller_Spells.lua @@ -870,9 +870,14 @@ 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 + if icon and (string.find(string.lower(icon), "treeoflife") or string.find(string.lower(icon), "healingway")) then + return nil; + end return i; end end end return nil; end +