From 50a64c5549e4d0896bf2039141e119db3824bcfb Mon Sep 17 00:00:00 2001 From: Bluewhale1337 <295648290+Bluewhale1337@users.noreply.github.com> Date: Sat, 12 Sep 2026 12:25:49 +0200 Subject: [PATCH] fix: return nil instead of index when excluding forms from unshifting --- 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 7941616..b248a76 100644 --- a/HealBot_Controller_Spells.lua +++ b/HealBot_Controller_Spells.lua @@ -873,7 +873,7 @@ function HealBot_GetShapeshiftForm() local icon_lower = string.lower(icon) -- Exclude non-standard/custom forms like Tree of Life from unshifting if not string.find(icon_lower, "humanoidform") and not string.find(icon_lower, "treeoflife") and not string.find(icon_lower, "healingway") and not string.find(icon_lower, "stoneclawtotem") then - return i; + return nil; end else return i;