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.
This commit is contained in:
C.L
2022-10-04 18:11:35 -04:00
parent 180ac762bf
commit b54499c88e
2 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -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
+2
View File
@@ -78,6 +78,8 @@
if(!(I.robotic >= ORGAN_ROBOT))
user.visible_message("<span class='notice'>[user] treats damage to [target]'s [I.name] with [tool_name].</span>", \
"<span class='notice'>You treat damage to [target]'s [I.name] with [tool_name].</span>" )
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, "<span class='warning'>You fix their [I] but the neurological structure is still heavily damaged and in need of repair.</span>")
I.damage = 0
I.status = 0
if(I.organ_tag == O_EYES)