From 8118ef3f9afb7fda194d79db811261a2f4349d2f Mon Sep 17 00:00:00 2001 From: dvize Date: Fri, 14 Apr 2023 10:34:10 -0700 Subject: [PATCH] update starting values --- Plugin.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Plugin.cs b/Plugin.cs index 16b3ec7..16b6460 100644 --- a/Plugin.cs +++ b/Plugin.cs @@ -49,8 +49,8 @@ namespace armorMod internal void Awake() { ArmorServiceMode = Config.Bind("Armor Repair Settings", "Enable/Disable Mod", true, "Enables the Armor Repairing Options Below"); - TimeDelayRepairInSec = Config.Bind("Armor Repair Settings", "Time Delay Repair in Sec", 10f, "How Long Before you were last hit that it repairs armor"); - ArmorRepairRateOverTime = Config.Bind("Armor Repair Settings", "Armor Repair Rate", 1f, "How much durability per second is repaired"); + TimeDelayRepairInSec = Config.Bind("Armor Repair Settings", "Time Delay Repair in Sec", 60f, "How Long Before you were last hit that it repairs armor"); + ArmorRepairRateOverTime = Config.Bind("Armor Repair Settings", "Armor Repair Rate", 0.5f, "How much durability per second is repaired"); } private void Update() {