]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Partial revert #14648 (#14759)
authorKara <lunarautomaton6@gmail.com>
Tue, 21 Mar 2023 23:47:26 +0000 (16:47 -0700)
committerGitHub <noreply@github.com>
Tue, 21 Mar 2023 23:47:26 +0000 (16:47 -0700)
Content.Server/Body/Components/BloodstreamComponent.cs
Content.Server/Body/Systems/BloodstreamSystem.cs

index 50a652d9a3800339d0d4d8c84d8fd7fb77cffc62..9368b3bf9bd7ddfb84b4036fd27b8d400bff6d65 100644 (file)
@@ -72,7 +72,7 @@ namespace Content.Server.Body.Components
         ///     How much reagent of blood should be restored each update interval?
         /// </summary>
         [DataField("bloodRefreshAmount")]
-        public float BloodRefreshAmount = 0.1f;
+        public float BloodRefreshAmount = 0.3f;
 
         /// <summary>
         ///     How much blood needs to be in the temporary solution in order to create a puddle?
index 2be26830d35737170b6bcaf7f60d6a7ab350d78d..4d548dbb3813eb4cbf58aad33f3048a31b31188f 100644 (file)
@@ -100,7 +100,7 @@ public sealed class BloodstreamSystem : EntitySystem
             // as well as stop their bleeding to a certain extent.
             if (bloodstream.BleedAmount > 0)
             {
-                TryModifyBloodLevel(uid, (-bloodstream.BleedAmount) / 10, bloodstream);
+                TryModifyBloodLevel(uid, (-bloodstream.BleedAmount) / 20, bloodstream);
                 TryModifyBleedAmount(uid, -bloodstream.BleedReductionAmount, bloodstream);
             }