From 45a66dd8723fd8ea2b5c21ada7f23714d3ae6650 Mon Sep 17 00:00:00 2001 From: Little-119 Date: Thu, 11 Mar 2021 18:05:50 -0500 Subject: [PATCH] Reduce calcium bone-healing chance I could give it an overdose or something, but that's too much effort for a joke --- .../reagents/Chemistry-Reagents/Chemistry-Reagents-Dispenser.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Dispenser.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Dispenser.dm index 3cd351bee04..8d825ef91c7 100644 --- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Dispenser.dm +++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Dispenser.dm @@ -18,7 +18,7 @@ //VOREStation Edit /datum/reagent/calcium/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed) - if(ishuman(M) && rand(1,1000) == 1) // Higher chance of occuring than with milk, since most people don't just eat straight calcium + if(ishuman(M) && rand(1,10000) == 1) var/mob/living/carbon/human/H = M for(var/obj/item/organ/external/O in H.bad_external_organs) if(O.status & ORGAN_BROKEN)