Partial revert #14648 (#14759)

This commit is contained in:
Kara
2023-03-21 16:47:26 -07:00
committed by GitHub
parent 88d68568aa
commit b4502757a5
2 changed files with 2 additions and 2 deletions

View File

@@ -72,7 +72,7 @@ namespace Content.Server.Body.Components
/// How much reagent of blood should be restored each update interval? /// How much reagent of blood should be restored each update interval?
/// </summary> /// </summary>
[DataField("bloodRefreshAmount")] [DataField("bloodRefreshAmount")]
public float BloodRefreshAmount = 0.1f; public float BloodRefreshAmount = 0.3f;
/// <summary> /// <summary>
/// How much blood needs to be in the temporary solution in order to create a puddle? /// How much blood needs to be in the temporary solution in order to create a puddle?

View File

@@ -100,7 +100,7 @@ public sealed class BloodstreamSystem : EntitySystem
// as well as stop their bleeding to a certain extent. // as well as stop their bleeding to a certain extent.
if (bloodstream.BleedAmount > 0) if (bloodstream.BleedAmount > 0)
{ {
TryModifyBloodLevel(uid, (-bloodstream.BleedAmount) / 10, bloodstream); TryModifyBloodLevel(uid, (-bloodstream.BleedAmount) / 20, bloodstream);
TryModifyBleedAmount(uid, -bloodstream.BleedReductionAmount, bloodstream); TryModifyBleedAmount(uid, -bloodstream.BleedReductionAmount, bloodstream);
} }