New Issue with 11.0.2
rpsalis opened this issue ยท 5 comments
2x Remix Gem Helper/Core.lua:479: hooksecurefunc(): CharacterFrameTab_OnClick is not a function
[string "=[C]"]: in function `hooksecurefunc'
[string "@remix Gem Helper/Core.lua"]:479: in function <Remix Gem Helper/Core.lua:196>
[string "@remix Gem Helper/Core.lua"]:544: in function <Remix Gem Helper/Core.lua:518>
Locals:
Has there been any update to this yet? I don't know enough about coding WoW addons to know how to fix this. I love this addon and would love to have it for the rest of Remix.
Still a bit isue with LUA error on opening disasembling portal, but not blocking using it
Actually, it's possible to avoid this error by removing the code below from core.lua on line 479. It works without it, it just not opening automatically gems helper when opening character panel(on first open only). It's not the best solution, but it allow to use it anyways waiting for a fix (maybe ?)
hooksecurefunc("CharacterFrameTab_OnClick", function()
if CharacterFrame.selectedTab ~= 1 then
gems:Hide()
frameToggle:Hide()
else
gems:Show()
frameToggle:Show()
end
end)