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; }