]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Bring back low pressure damage to its unnerfed value (#38196)
authorArtisticRoomba <145879011+ArtisticRoomba@users.noreply.github.com>
Tue, 10 Jun 2025 00:05:48 +0000 (17:05 -0700)
committerGitHub <noreply@github.com>
Tue, 10 Jun 2025 00:05:48 +0000 (17:05 -0700)
Content.Shared/Atmos/Atmospherics.cs

index 81149c723789d0e45fad1115b56a1b6b2b7654a6..80ad36e904a3b1ad1c3dc7c0f7f832a6be3673cb 100644 (file)
@@ -320,8 +320,7 @@ namespace Content.Shared.Atmos
         ///     (The pressure threshold is so low that it doesn't make sense to do any calculations,
         ///     so it just applies this flat value).
         /// </summary>
-        // Original value is 4, buff back when we have proper ways for players to deal with breaches.
-        public const int LowPressureDamage = 1;
+        public const int LowPressureDamage = 4;
 
         public const float WindowHeatTransferCoefficient = 0.1f;