Skip to content

Commit

Permalink
FIX: Zombie blood after zombify (#1841)
Browse files Browse the repository at this point in the history
  • Loading branch information
ReeZer2 authored Sep 11, 2024
1 parent 8e3e099 commit 7c7d3f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Content.Server/Body/Systems/BloodstreamSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ public void ChangeBloodReagent(EntityUid uid, string reagent, BloodstreamCompone
return;
}

var currentVolume = bloodSolution.RemoveReagent(component.BloodReagent, bloodSolution.Volume);
var currentVolume = bloodSolution.RemoveReagent(component.BloodReagent, bloodSolution.Volume, null, true); //ss220 zombie blood fix

component.BloodReagent = reagent;

Expand Down

0 comments on commit 7c7d3f0

Please sign in to comment.