From 709ec68ed9f2823a82fe83527049c324a961fd77 Mon Sep 17 00:00:00 2001 From: Roudenn Date: Mon, 2 Dec 2024 12:06:34 +0300 Subject: [PATCH] Healing is 10 times slower --- Content.Shared/Body/Part/BodyPartComponent.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Shared/Body/Part/BodyPartComponent.cs b/Content.Shared/Body/Part/BodyPartComponent.cs index 179e0e6449e..df1c790e89f 100644 --- a/Content.Shared/Body/Part/BodyPartComponent.cs +++ b/Content.Shared/Body/Part/BodyPartComponent.cs @@ -78,7 +78,7 @@ public sealed partial class BodyPartComponent : Component, ISurgeryToolComponent /// Shitmed Change: How long it takes to run another self heal tick on the body part. /// [DataField] - public float HealingTime = 30; + public float HealingTime = 10; /// /// Shitmed Change: How long it has been since the last self heal tick on the body part. @@ -89,7 +89,7 @@ public sealed partial class BodyPartComponent : Component, ISurgeryToolComponent /// Shitmed Change: How much health to heal on the body part per tick. /// [DataField] - public float SelfHealingAmount = 5; + public float SelfHealingAmount = 0.15f; /// /// Shitmed Change: The name of the container for this body part. Used in insertion surgeries.