This commit is contained in:
Rune Knight
2024-04-24 09:51:11 -07:00
parent c948fc2d1b
commit c17876f3a2
2 changed files with 4 additions and 4 deletions

View File

@@ -1102,8 +1102,8 @@
/obj/item/borg/cyborg_omnitool/medical/reference_item_for_parameters()
var/datum/component/butchering/butchering = src.GetComponent(/datum/component/butchering)
butchering.butchering_enabled = (tool_behaviour == TOOL_SCALPEL || tool_behaviour == TOOL_SAW)
can_initiate_surgery = TRUE // Given that all of listed items here can initiate surgery by themselves, it makes sense to do the same here.
butchering.butchering_enabled = tool_behaviour == (TOOL_SCALPEL && TOOL_SAW)
can_initiate_surgery = TRUE // For some reason, all of these medical items are suppose to initiate surgery instead of a select few.
item_flags = SURGICAL_TOOL
switch(tool_behaviour)
if(TOOL_SCALPEL)

View File

@@ -43,7 +43,7 @@
///// Repair Hairline Fracture (Severe)
/datum/surgery_step/repair_bone_hairline
name = "repair hairline fracture (bonesetter/bone gel/tape)"
implements = list(TOOL_BONESET = 100, /obj/item/stack/medical/bone_gel = 100, /obj/item/stack/tape = 30)
implements = list(/obj/item/bonesetter = 100, /obj/item/stack/medical/bone_gel = 100, /obj/item/stack/tape = 30)
preop_sound = list(
/obj/item/stack/medical/bone_gel = 'sound/effects/ointment.ogg',
/obj/item/stack/tape = 'sound/effects/tape.ogg',
@@ -89,7 +89,7 @@
///// Reset Compound Fracture (Crticial)
/datum/surgery_step/reset_compound_fracture
name = "reset bone"
implements = list(TOOL_BONESET = 100, /obj/item/stack/tape = 20)
implements = list(/obj/item/bonesetter = 100, /obj/item/stack/tape = 20)
preop_sound = list(
/obj/item/stack/tape = 'sound/effects/tape.ogg',
/obj/item = 'sound/surgery/bone1.ogg'