View Single Post
06/21/22, 08:24 AM   #3
Sharlikran
 
Sharlikran's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 644
For some older mods you may even need to make minor changes.

Say the mod includes LibAddonMenu and uses LibStub, you may need to delete the subfolders under Libs for the mod you downloaded to prevent that older version of it from loading.

Then find lines like

local LAM = LibStub("LibAddonMenu-2.0")

And have to change it to

local LAM = LibAddonMenu2

In order for the mod to work properly with r34 which is the current version of LibAddonMenu.

Last edited by Sharlikran : 06/21/22 at 08:27 AM.
  Reply With Quote