Meap
Don't need glasses if you C#
Considering its always a pain having to replace the figuredata in the extra folder and then reloading the mutant I thought I'd provide this simple little fix of grabbing it from your gamedata folder
Go into AntiMutant.cs and find
Replace it with this
Then go to your config.ini and add this
Now all you need to do is clear cache and reload, no need for extra folder or reloading the mutant to update your clothing
Go into AntiMutant.cs and find
Code:
XDocument Doc = XDocument.Load(Path.Combine(Application.StartupPath, @"extra/figuredata.xml"));
Replace it with this
Code:
XDocument Doc = XDocument.Load(PlusEnvironment.GetConfig().data["figuredata"]);
Then go to your config.ini and add this
Code:
figuredata=https://sitelink/addpathtofiguredatahere/figuredata.xml
Now all you need to do is clear cache and reload, no need for extra folder or reloading the mutant to update your clothing