Wuild / GatherLite

World of Warcraft: Classic Gathering addon keeping track on where you have found stuff
MIT License
32 stars 16 forks source link

Un'Goro Soil showing up as green squares instead of icons #163

Closed rbpaiett closed 2 years ago

rbpaiett commented 3 years ago

Describe the bug Un'Goro Soil shows green squares on the map

To Reproduce Steps to reproduce the behavior:

Enable Gatherlite Open map in Un'Goro

Expected behavior Expect to see Un'Goro Soil icons.

Screenshots

Gatherlite Un'Goro Soil
Silvertower commented 3 years ago

This is caused by the text "Open\\" missing as a prefix for "Soil" on line 333 of nodes.lua.

This line: icon = _GatherLite.iconPath .. "Soil",

Should be: icon = _GatherLite.iconPath .. "Open\\Soil",

rbpaiett commented 3 years ago

It worked nicely, thanks a lot!