Hekili Priority Helper

Hekili Priority Helper

44M Downloads

Seems to not show hotkeys without re-enabling hekili from dropdown and it giving errors

ghostedstep opened this issue ยท 6 comments

commented

Before You Begin

  • I confirm that I have downloaded the latest version of the addon.
  • I am not playing on a private server.
  • I checked for an existing, open ticket for this issue and was not able to find one.
  • I edited the title of this bug report (above) so that it describes the issue I am reporting.

Describe the Issue

WoWScrnShot_031924_181058

How to Reproduce

No idea but there was others in the discord with this error and I was told to open a ticket.

Player Information (Link)

https://pastebin.com/88QHEyvp

Error Messages (Link)

https://pastebin.com/Mku9Wpz3

Additional Information

No response

Contact Information

No response

commented

This should be resolved with the latest release (for 10.2.6).

I don't think it has, problem is still there with 10.2.6.
and just tried delete it and re-install, not work.

commented

This should be resolved with the latest release (for 10.2.6).

commented

First time doing this/using pastebin so if I did something wrong sorry. Just wanted to help give the error code since others were having this too.

commented

78x Usage: local result = C_Item.IsEquippedItem(itemInfo)
[string "=[C]"]: in function IsEquippedItem' [string "@Hekili/Events.lua"]:717: in function updateGear'
[string "@Hekili/Events.lua"]:316: in function `handler'
[string "@Hekili/Events.lua"]:60: in function <Hekili/Events.lua:52>

Locals:
(*temporary) = "Usage: local result = C_Item.IsEquippedItem(itemInfo)"

Also getting this same error.

commented

+1 on getting the same error:

[string "=[C]"]: in function `IsEquippedItem'
[string "@Hekili/Events.lua"]:717: in function `updateGear'
[string "@Hekili/Events.lua"]:316: in function `handler'
[string "@Hekili/Events.lua"]:60: in function <Hekili/Events.lua:52>

Locals:
(*temporary) = "Usage: local result = C_Item.IsEquippedItem(itemInfo)"```
commented

incase this is still happening to anyone else (still to me), i found the line it was erroring out in events.lua and just tried this and seems like it works, at least for time being

     for set, items in pairs( class.gear ) do
            state.set_bonus[ set ] = 0
            for item, _ in pairs( items ) do
                local itemInfo =  GetItemInfo( item )
                 if not itemInfo == "=(C)" then 
                    if item > maxItemSlot and IsEquippedItem( itemInfo ) then
                       state.set_bonus[ set ] = state.set_bonus[ set ] + 1
                    end
                 end
            end
        end