From 07776358eb27af078f95ea30e52be95f0693ce95 Mon Sep 17 00:00:00 2001 From: Vera Aguilera Puerto Date: Sun, 10 Jan 2021 16:16:18 +0100 Subject: [PATCH] Balance hunger & thirst movement slowdown. Fixes #2877 (in my opinion) --- .../GameObjects/Components/Nutrition/SharedHungerComponent.cs | 4 ++-- .../GameObjects/Components/Nutrition/SharedThirstComponent.cs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Content.Shared/GameObjects/Components/Nutrition/SharedHungerComponent.cs b/Content.Shared/GameObjects/Components/Nutrition/SharedHungerComponent.cs index 7faa1d69a6..c5e7dc21d5 100644 --- a/Content.Shared/GameObjects/Components/Nutrition/SharedHungerComponent.cs +++ b/Content.Shared/GameObjects/Components/Nutrition/SharedHungerComponent.cs @@ -20,7 +20,7 @@ namespace Content.Shared.GameObjects.Components.Nutrition { if (CurrentHungerThreshold == HungerThreshold.Starving) { - return 0.5f; + return 0.75f; } return 1.0f; } @@ -31,7 +31,7 @@ namespace Content.Shared.GameObjects.Components.Nutrition { if (CurrentHungerThreshold == HungerThreshold.Starving) { - return 0.5f; + return 0.75f; } return 1.0f; } diff --git a/Content.Shared/GameObjects/Components/Nutrition/SharedThirstComponent.cs b/Content.Shared/GameObjects/Components/Nutrition/SharedThirstComponent.cs index 70ad6d4976..3372566550 100644 --- a/Content.Shared/GameObjects/Components/Nutrition/SharedThirstComponent.cs +++ b/Content.Shared/GameObjects/Components/Nutrition/SharedThirstComponent.cs @@ -19,7 +19,7 @@ namespace Content.Shared.GameObjects.Components.Nutrition { if (CurrentThirstThreshold == ThirstThreshold.Parched) { - return 0.25f; + return 0.75f; } return 1.0f; } @@ -30,7 +30,7 @@ namespace Content.Shared.GameObjects.Components.Nutrition { if (CurrentThirstThreshold == ThirstThreshold.Parched) { - return 0.5f; + return 0.75f; } return 1.0f; }