From bd27b53ff09d4288aee4b762f22b166d62a29f14 Mon Sep 17 00:00:00 2001 From: Ilya246 <57039557+Ilya246@users.noreply.github.com> Date: Sun, 14 Jan 2024 00:12:14 +0400 Subject: [PATCH] Fix oxyburn energy not accounting for heatscale (#24023) --- Content.Server/Atmos/Reactions/TritiumFireReaction.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Atmos/Reactions/TritiumFireReaction.cs b/Content.Server/Atmos/Reactions/TritiumFireReaction.cs index c52b431fd4..37c9741e86 100644 --- a/Content.Server/Atmos/Reactions/TritiumFireReaction.cs +++ b/Content.Server/Atmos/Reactions/TritiumFireReaction.cs @@ -19,7 +19,7 @@ namespace Content.Server.Atmos.Reactions var initialTrit = mixture.GetMoles(Gas.Tritium); if (mixture.GetMoles(Gas.Oxygen) < initialTrit || - Atmospherics.MinimumTritiumOxyburnEnergy > (temperature * oldHeatCapacity)) + Atmospherics.MinimumTritiumOxyburnEnergy > (temperature * oldHeatCapacity * heatScale)) { burnedFuel = mixture.GetMoles(Gas.Oxygen) / Atmospherics.TritiumBurnOxyFactor; if (burnedFuel > initialTrit) -- 2.51.2