ModGuy
Content Creator
- Joined
- Feb 17, 2011
Invisible Lad said:It doesn't matter whether the mod supports hue shift natively or not, and registerAll4HueShift doesn't seem to work anymore, either. I tried various mods by TOlive, and Mike, for example: TOlive's Hoodie (filename: Loader_Hoodie_Open), and then, after reopening the loader Mike's Supergirl V3 plus registerAll4HueShift since it doesn't have native support for hue shifting, and the blank space at the top of the sidebar remains blank. All mods come from the loader imports board on this site. Need specific links?
Don't need links but those mods indeed reproduced this issue, cheers for being so attentive.
Had a look over the code and noticed another insanely silly mistake in my code.
I used "=" instead of "==", whoops.
Error:
Code:
if (foundData = false)
{
mod_panel.slidePanel.lstHues.addItem({label:mcName,data:[mc,[1,1,1,1,0,0,0,255]]});
}
And the fix:
Code:
if (!foundData)
{
mod_panel.slidePanel.lstHues.addItem({label:mcName,data:[mc,[1,1,1,1,0,0,0,255]]});
}
This basically meant that if the mod was registered and had already been specified in the HueData.txt only then would it appear.
This was impossible seeing as how it need to appear to even generate the said file.
Should be fixed, will upload soon.
EDIT: Released.