update starting values

This commit is contained in:
dvize
2023-04-14 10:34:10 -07:00
parent f0f733bd71
commit 8118ef3f9a

View File

@@ -49,8 +49,8 @@ namespace armorMod
internal void Awake() internal void Awake()
{ {
ArmorServiceMode = Config.Bind("Armor Repair Settings", "Enable/Disable Mod", true, "Enables the Armor Repairing Options Below"); 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"); 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", 1f, "How much durability per second is repaired"); ArmorRepairRateOverTime = Config.Bind("Armor Repair Settings", "Armor Repair Rate", 0.5f, "How much durability per second is repaired");
} }
private void Update() private void Update()
{ {