Thread: Bonanza Errors
View Single Post
11/08/23, 07:52 PM   #15
Sharlikran
 
Sharlikran's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 665
As much as I dislike LibStub, it is still required for Dolgubon's mods. There is nothing wrong with them. The only issue is that when users load older mods like you had with LibAddonMenu-1.0 for example, then that's when LibStub causes issues because it will try to load that in addition to LibAddonMenu-2.0. Then there are conflicts.

I am glad you are trying to do this yourself. However, the errors do imply you may have game install issues if not other serious Lua conflicts because of older mods. If you would load all your mods with LibStub and without BugEater installed like you have it, then I will look again. I might see other errors that are more simple to address then you trying on your own.

Plus it will be more learning for you because some mods just need some lines changed for example.

Changing

local LAM = LibStub("LibAddonMenu-2.0")

to

local LAM = LibAddonMenu2

Last edited by Sharlikran : 11/08/23 at 07:59 PM.
  Reply With Quote