]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Fix for low zombie blood (#32532)
authorŁukasz Lindert <lukasz.lindert@protonmail.com>
Sat, 19 Oct 2024 15:31:45 +0000 (17:31 +0200)
committerGitHub <noreply@github.com>
Sat, 19 Oct 2024 15:31:45 +0000 (17:31 +0200)
fix for low zombie blood

Co-authored-by: Łuaksz <test@test.com>
Content.Server/Body/Systems/BloodstreamSystem.cs

index 18790e7326b6ca7220b4a226de462d6feea230e1..198123cc5fd578b0d3b9079c2bc7d10cc2d08826 100644 (file)
@@ -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;