From 0a105213b4807f50a1f8ef9dfb2c9d3128172bd9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C5=81ukasz=20Lindert?= Date: Sat, 19 Oct 2024 17:31:45 +0200 Subject: [PATCH] Fix for low zombie blood (#32532) MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit fix for low zombie blood Co-authored-by: Łuaksz --- Content.Server/Body/Systems/BloodstreamSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Body/Systems/BloodstreamSystem.cs b/Content.Server/Body/Systems/BloodstreamSystem.cs index 18790e7326..198123cc5f 100644 --- a/Content.Server/Body/Systems/BloodstreamSystem.cs +++ b/Content.Server/Body/Systems/BloodstreamSystem.cs @@ -472,7 +472,7 @@ public sealed class BloodstreamSystem : EntitySystem return; } - var currentVolume = bloodSolution.RemoveReagent(component.BloodReagent, bloodSolution.Volume); + var currentVolume = bloodSolution.RemoveReagent(component.BloodReagent, bloodSolution.Volume, ignoreReagentData: true); component.BloodReagent = reagent; -- 2.52.0