From b54499c88e2e2fc23c0f40dc1ff5e9740c5d96bb Mon Sep 17 00:00:00 2001 From: "C.L" Date: Tue, 4 Oct 2022 18:11:35 -0400 Subject: [PATCH] Renames the 'cut bone' step to its proper name. Organ repair clarity. - Renames 'cut ribs' to 'cut bone' as it should be, as that step is also used on the head. - Gives people a heads up when they repair the brain from death, telling them they need to perform the spinal surgery as well. --- code/modules/surgery/encased.dm | 2 +- code/modules/surgery/organs_internal.dm | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/code/modules/surgery/encased.dm b/code/modules/surgery/encased.dm index a7ec705738c..f41e33500e5 100644 --- a/code/modules/surgery/encased.dm +++ b/code/modules/surgery/encased.dm @@ -22,7 +22,7 @@ /////////////////////////////////////////////////////////////// /datum/surgery_step/open_encased/saw - surgery_name = "Cut Ribs" + surgery_name = "Cut Bone" allowed_tools = list( /obj/item/weapon/surgical/circular_saw = 100, \ /obj/item/weapon/material/knife/machete/hatchet = 75 diff --git a/code/modules/surgery/organs_internal.dm b/code/modules/surgery/organs_internal.dm index da1938eba39..e92010f8d38 100644 --- a/code/modules/surgery/organs_internal.dm +++ b/code/modules/surgery/organs_internal.dm @@ -78,6 +78,8 @@ if(!(I.robotic >= ORGAN_ROBOT)) user.visible_message("[user] treats damage to [target]'s [I.name] with [tool_name].", \ "You treat damage to [target]'s [I.name] with [tool_name]." ) + if(I.organ_tag == O_BRAIN && I.status == ORGAN_DEAD && target.can_defib == 0) //Let people know they still got more work to get the brain back into working order. + to_chat(user, "You fix their [I] but the neurological structure is still heavily damaged and in need of repair.") I.damage = 0 I.status = 0 if(I.organ_tag == O_EYES)