From 3d136e89c1c86dce38b1abe96cacca1f98fb49b8 Mon Sep 17 00:00:00 2001 From: CHOMPStation2StaffMirrorBot <94713762+CHOMPStation2StaffMirrorBot@users.noreply.github.com> Date: Thu, 25 Jun 2026 08:16:48 -0700 Subject: [PATCH] [MIRROR] No salve RNG (#12843) Co-authored-by: Cameron Lennox --- code/modules/organs/organ_external.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/organs/organ_external.dm b/code/modules/organs/organ_external.dm index ded8aad31a..18642b205b 100644 --- a/code/modules/organs/organ_external.dm +++ b/code/modules/organs/organ_external.dm @@ -927,7 +927,7 @@ Note that amputating the affected organ does in fact remove the infection from t W.heal_damage(heal_amt) // Salving also helps against infection - if(W.germ_level > 0 && W.salved && prob(2)) + if(W.germ_level > 0 && W.salved) W.disinfected = 1 W.germ_level = 0