From f2cb05bc619347fd822a7a17e5d5008da685322e Mon Sep 17 00:00:00 2001 From: router Date: Sat, 23 Dec 2023 22:35:22 +0300 Subject: [PATCH] Fix accidental plasma burn nerf (#22894) --- Content.Shared/Atmos/Atmospherics.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Atmos/Atmospherics.cs b/Content.Shared/Atmos/Atmospherics.cs index 39b24de746..2565ccd228 100644 --- a/Content.Shared/Atmos/Atmospherics.cs +++ b/Content.Shared/Atmos/Atmospherics.cs @@ -183,7 +183,7 @@ namespace Content.Shared.Atmos public const float FireMinimumTemperatureToExist = T0C + 100f; public const float FireMinimumTemperatureToSpread = T0C + 150f; public const float FireSpreadRadiosityScale = 0.85f; - public const float FirePlasmaEnergyReleased = 16e3f; // methane is 16 kJ/mol + public const float FirePlasmaEnergyReleased = 160e3f; // methane is 16 kJ/mol, plus plasma's spark of magic public const float FireGrowthRate = 40000f; public const float SuperSaturationThreshold = 96f; -- 2.51.2