From 6fb968d47f0592e33435a0002c8faf75c9dc4c1e Mon Sep 17 00:00:00 2001 From: 20kdc Date: Wed, 20 Oct 2021 19:31:53 +0100 Subject: [PATCH] Set default Pow3r ramp rate/tolerance values (#4748) --- Content.Server/Power/Pow3r/PowerState.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Content.Server/Power/Pow3r/PowerState.cs b/Content.Server/Power/Pow3r/PowerState.cs index 0d220b9259..d10b55a3b7 100644 --- a/Content.Server/Power/Pow3r/PowerState.cs +++ b/Content.Server/Power/Pow3r/PowerState.cs @@ -350,8 +350,8 @@ namespace Content.Server.Power.Pow3r [ViewVariables(VVAccess.ReadWrite)] public bool Paused; [ViewVariables(VVAccess.ReadWrite)] public float MaxSupply; - [ViewVariables(VVAccess.ReadWrite)] public float SupplyRampRate; - [ViewVariables(VVAccess.ReadWrite)] public float SupplyRampTolerance; + [ViewVariables(VVAccess.ReadWrite)] public float SupplyRampRate = 5000; + [ViewVariables(VVAccess.ReadWrite)] public float SupplyRampTolerance = 5000; // == Runtime parameters == @@ -399,8 +399,8 @@ namespace Content.Server.Power.Pow3r [ViewVariables(VVAccess.ReadWrite)] public float MaxChargeRate; [ViewVariables(VVAccess.ReadWrite)] public float MaxThroughput; // 0 = infinite cuz imgui [ViewVariables(VVAccess.ReadWrite)] public float MaxSupply; - [ViewVariables(VVAccess.ReadWrite)] public float SupplyRampTolerance; - [ViewVariables(VVAccess.ReadWrite)] public float SupplyRampRate; + [ViewVariables(VVAccess.ReadWrite)] public float SupplyRampTolerance = 5000; + [ViewVariables(VVAccess.ReadWrite)] public float SupplyRampRate = 5000; [ViewVariables(VVAccess.ReadWrite)] public float Efficiency = 1; // == Runtime parameters ==