From ffccace33666694ecd5045b99eb7ed05a4357e04 Mon Sep 17 00:00:00 2001 From: Jerry <48524572+JerryImMouse@users.noreply.github.com> Date: Wed, 17 Apr 2024 01:33:22 +0500 Subject: [PATCH] =?UTF-8?q?=D1=8D=D1=85=D1=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Chemistry/EntitySystems/SolutionRegenerationSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Chemistry/EntitySystems/SolutionRegenerationSystem.cs b/Content.Server/Chemistry/EntitySystems/SolutionRegenerationSystem.cs index 66a71911475..d6fdba9d057 100644 --- a/Content.Server/Chemistry/EntitySystems/SolutionRegenerationSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/SolutionRegenerationSystem.cs @@ -28,7 +28,7 @@ public override void Update(float frameTime) continue; // timer ignores if its full, it's just a fixed cycle - regen.NextRegenTime = _timing.CurTime + TimeSpan.FromSeconds(5); + regen.NextRegenTime = _timing.CurTime + regen.Duration; if (_solutionContainer.ResolveSolution((uid, manager), regen.SolutionName, ref regen.Solution, out var solution)) { var amount = FixedPoint2.Min(solution.AvailableVolume, regen.Generated.Volume);