ClothingAutoConfigurator

Plugins + Scripts ClothingAutoConfigurator

Download [<1 MB]

Ashu27

Well-known member
Joined
Oct 3, 2022
Messages
199
Reactions
847
Noticed an issue that breaks the auto-implementation of the clothing plugin manager:

When it adds the the plugin to the "storables" it adds this

Code:
{
         "id" : "<Clothing-Name>Style",
         "plugins" : {
            "plugin#0" : "Stopper.ClothingPluginManager.7:/Custom/Scripts/Stopper/ClothingPluginManager/ClothingPluginManager.cs"
         }
      },

When it should be adding this

Code:
{
         "id" : "<Clothing-Name>",
         "plugins" : {
            "plugin#0" : "Stopper.ClothingPluginManager.7:/Custom/Scripts/Stopper/ClothingPluginManager/ClothingPluginManager.cs"
         }
      },

For whatever reason, that extra "Style" in the id causes the ClothingPluginManager.cs to just not work
 
Back
Top Bottom