From d0e39bbfe60a33ae225ebed64c0399e2a210b13a Mon Sep 17 00:00:00 2001 From: ATH1909 <42606352+ATH1909@users.noreply.github.com> Date: Sat, 2 May 2020 15:38:41 -0500 Subject: [PATCH] fixes the targeting of the cortex bioware surgeries (#50719) * fixes the targeting of the cortex bioware surgeries * Update code/modules/surgery/advanced/bioware/cortex_imprint.dm Co-authored-by: XDTM Co-authored-by: AnturK Co-authored-by: XDTM --- code/modules/surgery/advanced/bioware/cortex_folding.dm | 2 +- code/modules/surgery/advanced/bioware/cortex_imprint.dm | 7 +++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/code/modules/surgery/advanced/bioware/cortex_folding.dm b/code/modules/surgery/advanced/bioware/cortex_folding.dm index ecced370484..ba12c606a76 100644 --- a/code/modules/surgery/advanced/bioware/cortex_folding.dm +++ b/code/modules/surgery/advanced/bioware/cortex_folding.dm @@ -10,7 +10,7 @@ /datum/surgery_step/close) possible_locs = list(BODY_ZONE_HEAD) target_mobtypes = list(/mob/living/carbon/human, /mob/living/carbon/monkey) - bioware_target = BIOWARE_LIGAMENTS + bioware_target = BIOWARE_CORTEX /datum/surgery/advanced/bioware/cortex_folding/can_start(mob/user, mob/living/carbon/target) var/obj/item/organ/brain/B = target.getorganslot(ORGAN_SLOT_BRAIN) diff --git a/code/modules/surgery/advanced/bioware/cortex_imprint.dm b/code/modules/surgery/advanced/bioware/cortex_imprint.dm index 951fd800ac5..f61cbd423fd 100644 --- a/code/modules/surgery/advanced/bioware/cortex_imprint.dm +++ b/code/modules/surgery/advanced/bioware/cortex_imprint.dm @@ -1,6 +1,6 @@ /datum/surgery/advanced/bioware/cortex_imprint name = "Cortex Imprint" - desc = "A surgical procedure which modifies the cerebral cortex into a redundant neural pattern, making the brain able to bypass damage caused by minor brain traumas." + desc = "A surgical procedure which modifies the cerebral cortex into a redundant neural pattern, making the brain able to bypass impediments caused by minor brain traumas." steps = list(/datum/surgery_step/incise, /datum/surgery_step/retract_skin, /datum/surgery_step/clamp_bleeders, @@ -10,7 +10,7 @@ /datum/surgery_step/close) possible_locs = list(BODY_ZONE_HEAD) target_mobtypes = list(/mob/living/carbon/human, /mob/living/carbon/monkey) - bioware_target = BIOWARE_LIGAMENTS + bioware_target = BIOWARE_CORTEX /datum/surgery/advanced/bioware/cortex_imprint/can_start(mob/user, mob/living/carbon/target) var/obj/item/organ/brain/B = target.getorganslot(ORGAN_SLOT_BRAIN) @@ -49,10 +49,9 @@ /datum/bioware/cortex_imprint name = "Cortex Imprint" - desc = "The cerebral cortex has been reshaped into a redundant neural pattern, making the brain able to bypass damage caused by minor brain traumas." + desc = "The cerebral cortex has been reshaped into a redundant neural pattern, making the brain able to bypass impediments caused by minor brain traumas." mod_type = BIOWARE_CORTEX can_process = TRUE /datum/bioware/cortex_imprint/process() owner.cure_trauma_type(resilience = TRAUMA_RESILIENCE_BASIC) -