From 5e4045b82c25173df969903be6877546a4e2a6ef Mon Sep 17 00:00:00 2001 From: BIGZi0348 <118811750+BIGZi0348@users.noreply.github.com> Date: Sat, 19 Oct 2024 21:38:14 +0300 Subject: [PATCH] Update ThirstSystem.cs (#736) --- Content.Shared/Nutrition/EntitySystems/ThirstSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Nutrition/EntitySystems/ThirstSystem.cs b/Content.Shared/Nutrition/EntitySystems/ThirstSystem.cs index e2a88105a0..6190e7aa36 100644 --- a/Content.Shared/Nutrition/EntitySystems/ThirstSystem.cs +++ b/Content.Shared/Nutrition/EntitySystems/ThirstSystem.cs @@ -197,7 +197,7 @@ public sealed class ThirstSystem : EntitySystem component.ActualDecayRate = component.BaseDecayRate * 0.8f; return; case ThirstThreshold.Parched: - _movement.RefreshMovementSpeedModifiers(uid); + //_movement.RefreshMovementSpeedModifiers(uid); WD REMOVED component.LastThirstThreshold = component.CurrentThirstThreshold; component.ActualDecayRate = component.BaseDecayRate * 0.6f; return;