From c8b55714ccf12b4a43bb0a2efd7dd2ad926d2161 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Aguilera=20Puerto?= Date: Tue, 1 Sep 2020 02:25:19 +0200 Subject: [PATCH] Increase barotrauma timer to 3 seconds. --- Content.Server/GameObjects/EntitySystems/BarotraumaSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/GameObjects/EntitySystems/BarotraumaSystem.cs b/Content.Server/GameObjects/EntitySystems/BarotraumaSystem.cs index 2210afb488..d607c3d984 100644 --- a/Content.Server/GameObjects/EntitySystems/BarotraumaSystem.cs +++ b/Content.Server/GameObjects/EntitySystems/BarotraumaSystem.cs @@ -7,7 +7,7 @@ namespace Content.Server.GameObjects.EntitySystems [UsedImplicitly] public class BarotraumaSystem : EntitySystem { - private const float TimePerUpdate = 0.5f; + private const float TimePerUpdate = 3f; private float _timer = 0f;