Skip to content

Commit c760d73

Browse files
committed
Fix ConfigVersion check
1 parent 4a98081 commit c760d73

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

ButtJiggle/ButtJiggle.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public static class PluginInfo
5151
// The name of this plugin.
5252
public const string PLUGIN_NAME = "Butt Jiggle";
5353
// The version of this plugin.
54-
public const string PLUGIN_VERSION = "0.11";
54+
public const string PLUGIN_VERSION = "0.12";
5555
}
5656
}
5757

@@ -107,7 +107,7 @@ void Awake()
107107
ButtJiggle_Enabled = Config.Bind("ButtJiggle", "Enabled", true);
108108
ButtJiggle_DefaultSoftness_Hip = Config.Bind("ButtJiggle", "DefaultSoftness.Hip" , MaidJiggleOverride.Default.HipOverride.Softness.Value);
109109
ButtJiggle_DefaultSoftness_Pelvis = Config.Bind("ButtJiggle", "DefaultSoftness.Pelvis", MaidJiggleOverride.Default.PelvisOverride.Softness.Value);
110-
if (ButtJiggle_ConfigVersion.Value < 1.11)
110+
if (ButtJiggle_ConfigVersion.Value < 0.11)
111111
{
112112
ButtJiggle_DefaultSoftness_Pelvis.Value = MaidJiggleOverride.Default.PelvisOverride.Softness.Value;
113113
}
@@ -158,7 +158,7 @@ private void ConfigBindGlobalOverride()
158158
//GlobalOverride_Json = Config.Bind("Global Override", "Json" , defaultJson, "The jiggle settings in JSON format" );
159159
GlobalOverride_Settings = Config.BindJson("GlobalOverride", "Settings", MaidJiggleOverride.Default, "The settings used for the global override");
160160

161-
if (ButtJiggle_ConfigVersion.Value < 1.11)
161+
if (ButtJiggle_ConfigVersion.Value < 0.11)
162162
{
163163
GlobalOverride_Settings.Value = MaidJiggleOverride.Default;
164164
}

0 commit comments

Comments
 (0)