Update ThirstSystem.cs (#736)

This commit is contained in:
BIGZi0348
2024-10-19 21:38:14 +03:00
committed by GitHub
parent 207575b2ce
commit 5e4045b82c

View File

@@ -197,7 +197,7 @@ public sealed class ThirstSystem : EntitySystem
component.ActualDecayRate = component.BaseDecayRate * 0.8f; component.ActualDecayRate = component.BaseDecayRate * 0.8f;
return; return;
case ThirstThreshold.Parched: case ThirstThreshold.Parched:
_movement.RefreshMovementSpeedModifiers(uid); //_movement.RefreshMovementSpeedModifiers(uid); WD REMOVED
component.LastThirstThreshold = component.CurrentThirstThreshold; component.LastThirstThreshold = component.CurrentThirstThreshold;
component.ActualDecayRate = component.BaseDecayRate * 0.6f; component.ActualDecayRate = component.BaseDecayRate * 0.6f;
return; return;