Skip to content

Commit

Permalink
The malfunctioning C_Item.EquipItemByName has been fixed by Blizzard
Browse files Browse the repository at this point in the history
  • Loading branch information
Slackluster committed Apr 19, 2024
1 parent c5ebd51 commit ea34c9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ea34c9b

Please sign in to comment.