From eb690b5d8f58462b40457ecff675312d752d7376 Mon Sep 17 00:00:00 2001 From: Cameron Lennox Date: Thu, 25 Jun 2026 11:01:33 -0400 Subject: [PATCH] No salve RNG (#19538) --- 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 91d66d8aee6..a95077bd56c 100644 --- a/code/modules/organs/organ_external.dm +++ b/code/modules/organs/organ_external.dm @@ -928,7 +928,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