]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Cut low pressure damage to 1/4 (#29478)
authorPieter-Jan Briers <pieterjan.briers+git@gmail.com>
Wed, 26 Jun 2024 00:48:26 +0000 (02:48 +0200)
committerGitHub <noreply@github.com>
Wed, 26 Jun 2024 00:48:26 +0000 (20:48 -0400)
Content.Shared/Atmos/Atmospherics.cs

index 6e640b287b691a8ae4d2d8c4fcdcdc97b5189e61..1e40daf3dde409abe1b2b6e3c37c50bd5a01a3d6 100644 (file)
@@ -286,7 +286,8 @@ 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>
-        public const int LowPressureDamage = 4;
+        // Original value is 4, buff back when we have proper ways for players to deal with breaches.
+        public const int LowPressureDamage = 1;
 
         public const float WindowHeatTransferCoefficient = 0.1f;