diff --git a/Stamina/Config.cs b/Stamina/Config.cs index 175efde..3f1598c 100644 --- a/Stamina/Config.cs +++ b/Stamina/Config.cs @@ -226,13 +226,13 @@ public class StaminaConfig : ModConfig { [Range( 0f, 1f )] [DefaultValue( 0.08f )] - [CustomModConfigItem( typeof( FloatInputElement ) )] + [CustomModConfigItem( typeof( MyFloatInputElement ) )] public float PercentOfDamageAdrenalineBurst = 0.08f; [Range( 0f, 1000f )] [DefaultValue( 12f )] - [CustomModConfigItem( typeof( FloatInputElement ) )] + [CustomModConfigItem( typeof( MyFloatInputElement ) )] public float FatigueAmountFromExhaustion = 12f; [Range( 0, 60 * 60 * 60 * 24 )] @@ -245,7 +245,7 @@ public class StaminaConfig : ModConfig { [Range( 0f, 1f )] [DefaultValue( 0.24f )] - [CustomModConfigItem( typeof( FloatInputElement ) )] + [CustomModConfigItem( typeof( MyFloatInputElement ) )] public float FatigueAsMaxStaminaPercentAmountNeeededForExercise = 0.24f; diff --git a/Stamina/build.txt b/Stamina/build.txt index 725ae89..35b6ef3 100644 --- a/Stamina/build.txt +++ b/Stamina/build.txt @@ -1,5 +1,5 @@ author = hamstar -version = 2.1.1.3 +version = 2.1.1.5 displayName = Stamina modReferences = HamstarHelpers@5.2.0 buildIgnore = *.csproj, *.user, *.bat, obj\*, bin\*, .vs\*, .git\*