From ea34c9bef54e6e4cabdaaeaa64ad9e203c2c2d25 Mon Sep 17 00:00:00 2001 From: Sluimerstand Date: Fri, 19 Apr 2024 12:38:50 +0200 Subject: [PATCH] The malfunctioning C_Item.EquipItemByName has been fixed by Blizzard --- Core.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core.lua b/Core.lua index e0056c6..55ec4d4 100644 --- a/Core.lua +++ b/Core.lua @@ -569,7 +569,7 @@ function api.DoTheThing(msg) if v.slot == 18 then C_Item.EquipItemByName(v.item) else - C_Item.EquipItemByName(v.item, v.slot-1) -- Temp -1 because API wack + C_Item.EquipItemByName(v.item, v.slot) end end) end