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);
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);