From 6e12a52fdef2131d027bfcf13db27f36c5ec0295 Mon Sep 17 00:00:00 2001 From: Geeves Date: Sat, 3 Apr 2021 20:32:52 +0200 Subject: [PATCH] Bone Regeneration Fix (#11588) --- code/modules/mob/living/carbon/human/human_damage.dm | 2 +- html/changelogs/geeves-dentbrain.yml | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 html/changelogs/geeves-dentbrain.yml diff --git a/code/modules/mob/living/carbon/human/human_damage.dm b/code/modules/mob/living/carbon/human/human_damage.dm index c2c70c1d25b..7dd2ea5c430 100644 --- a/code/modules/mob/living/carbon/human/human_damage.dm +++ b/code/modules/mob/living/carbon/human/human_damage.dm @@ -281,7 +281,7 @@ if(!length(parts)) return var/obj/item/organ/external/picked = pick(parts) - if(picked.heal_damage(brute, burn, prosthetic)) + if(picked.heal_damage(brute, burn, robo_repair = prosthetic)) UpdateDamageIcon() BITSET(hud_updateflag, HEALTH_HUD) updatehealth() diff --git a/html/changelogs/geeves-dentbrain.yml b/html/changelogs/geeves-dentbrain.yml new file mode 100644 index 00000000000..203ffcd7bd5 --- /dev/null +++ b/html/changelogs/geeves-dentbrain.yml @@ -0,0 +1,6 @@ +author: Geeves + +delete-after: True + +changes: + - bugfix: "Bones no longer spontaneously repair themselves." \ No newline at end of file