Masque

Masque

7M Downloads

Bug: Skins Not Loading

vojtasrb opened this issue · 10 comments

commented

Game Flavor

Retail

Game Version

11.0.2

Add-On Version

11.0.1

Description

Not all skins are showing up in the list.

F.e. I can't see Masque_Squat.

Steps to Reproduce

  1. Install Masque_Squat and Masque Addon
  2. Look at the settings, it's not there
  3. Profit
commented

I have the same issue. Masque: Shadowlands doesnt show up.

Screenshot 2024-08-14 211759
Screenshot 2024-08-14 211906

commented
  1. Make sure that you have out-of-date add-ons enabled.
  2. If there's an error about GetAddOnMetadata, you will need to manually edit the file and add C_AddOns. to the beginning of every occurrence of GetAddOnMetadata so that it reads C_AddOns.GetAddOnMetadata.
commented

@StormFX : Thanks for the reply.

  1. is enabled
  2. There is no error about GetAddOnMetadata
commented

You must have errors suppressed or something. I can confirm the skin does need to be edited.

Change line 8 of main.lua (in the Masque_Shadowlands folder)

From:

local VERSION = GetAddOnMetadata(ADDON, "Version")

To:

local VERSION = C_AddOns.GetAddOnMetadata(ADDON, "Version")
commented

Worked perfectly.

Thank you for yout time and effort. @StormFX

commented

No problem!

commented

After editing the file, Squat still not working unfortunately

commented

Apologize for the premature close. Was assuming it was fixed and got side-tracked by the additional poster. And for future reference, the original poster should be able to re-open an issue.

After editing the file, Squat still not working unfortunately

Shadowlands's code is different, so you'll need to adjust it. Change "VERSION" to "Version" in the example above. Lua is case-sensitive.

image
image
image

commented

Apologize for the premature close. Was assuming it was fixed and got side-tracked by the additional poster. And for future reference, the original poster should be able to re-open an issue.

After editing the file, Squat still not working unfortunately

Shadowlands's code is different, so you'll need to adjust it. Change "VERSION" to "Version" in the example above. Lua is case-sensitive.

image image image

Hey dude, it works now. Thanks!

Now you can close it. :)

commented

Good to hear!