From e675401f4ab7b9c9c4f142289af74f6bfc7a7804 Mon Sep 17 00:00:00 2001 From: Razgriz Date: Sat, 26 Jun 2021 15:15:24 -0700 Subject: [PATCH] Change Osteodaxon total volume required from 5 to 1 Change Osteodaxon total volume required to heal from 5 to 1 --- code/modules/reagents/reagents/medicine.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/reagents/reagents/medicine.dm b/code/modules/reagents/reagents/medicine.dm index 06c1f3e2df..fc21e22589 100644 --- a/code/modules/reagents/reagents/medicine.dm +++ b/code/modules/reagents/reagents/medicine.dm @@ -729,7 +729,7 @@ if(istype(R,/datum/reagent/osteodaxon)) totalvol += R.volume totalvol += volume - if(totalvol >= 5) + if(totalvol >= 1) for(var/obj/item/organ/external/O in H.bad_external_organs) if(O.status & ORGAN_BROKEN) O.mend_fracture() //Only works if the bone won't rebreak, as usual