You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you., I'm using the basic PhanxFont addon, not the github one, and yes, quest tab is small, I am getting this lua error for 13, what am I doing wrong please?
`Message: Interface/AddOns/PhanxFont/Options.lua:14: unexpected symbol near '13'
Time: Wed Aug 14 12:34:34 2024
Count: 1
Stack: Interface/AddOns/PhanxFont/Options.lua:14: unexpected symbol near '13'
Message: Interface/AddOns/PhanxFont/Options.lua:1 Interface/AddOns/PhanxFont/Options.lua:14: unexpected symbol near '13'
Time: Wed Aug 14 12:38:23 2024`
I was getting an error ‘InterfaceOptions_AddCategory’ (a nil value),
I did some digging, found a post about another addon with the same issue
https://us.forums.blizzard.com/en/wow/t/zelda-loot-addon-wont-show/1900489/4
and thanks to the guys there i was able to cobble together changes that seems to have fixed the issue:
I added this line to line #13 in the Options.lua file:
13--local category, layout
and then I remarked out the following at line #266, or you could just delete it
--InterfaceOptions_AddCategory(Options)
and then right under that i added this code block:
category, layout = Settings.RegisterCanvasLayoutCategory(Options, Options.name, Options.name);
category.ID = Options.name
Settings.RegisterAddOnCategory(category);
The text was updated successfully, but these errors were encountered: