Skip to content

Commit

Permalink
Cut low pressure damage to 1/4 (space-wizards#29478)
Browse files Browse the repository at this point in the history
  • Loading branch information
PJB3005 authored and Baa14453 committed Oct 19, 2024
1 parent b593ef1 commit 5be4411
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Content.Shared/Atmos/Atmospherics.cs
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,8 @@ public static class Atmospherics
/// (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;

Expand Down

0 comments on commit 5be4411

Please sign in to comment.