From 180818f2f87f4dd6524c22e3516fbe95698af2d0 Mon Sep 17 00:00:00 2001 From: Casper3667 <8396443+Casper3667@users.noreply.github.com> Date: Sun, 9 Jan 2022 01:31:54 +0100 Subject: [PATCH] Fixes tendon repair surgery (#12897) Co-authored-by: TGW --- code/game/gamemodes/technomancer/spells/mend_organs.dm | 2 +- code/modules/surgery/other.dm | 2 +- html/changelogs/TendonFix.yml | 6 ++++++ 3 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 html/changelogs/TendonFix.yml diff --git a/code/game/gamemodes/technomancer/spells/mend_organs.dm b/code/game/gamemodes/technomancer/spells/mend_organs.dm index d819e947711..1b440605ba3 100644 --- a/code/game/gamemodes/technomancer/spells/mend_organs.dm +++ b/code/game/gamemodes/technomancer/spells/mend_organs.dm @@ -48,7 +48,7 @@ affected.status &= ~ORGAN_BROKEN if(affected.tendon_status() & TENDON_CUT) - affected.tendon.heal() + affected.tendon.rejuvenate() if(E.status & ORGAN_ARTERY_CUT) E.status &= ~ORGAN_ARTERY_CUT diff --git a/code/modules/surgery/other.dm b/code/modules/surgery/other.dm index cec6208a450..5a449edacf2 100644 --- a/code/modules/surgery/other.dm +++ b/code/modules/surgery/other.dm @@ -214,7 +214,7 @@ var/obj/item/organ/external/affected = target.get_organ(target_zone) user.visible_message(SPAN_NOTICE("[user] has reattached the [affected.tendon_name] in [target]'s [affected.name] with \the [tool]."), \ SPAN_NOTICE("You have reattached the [affected.tendon_name] in [target]'s [affected.name] with \the [tool].")) - affected.tendon.heal() + affected.tendon.rejuvenate() affected.update_damages() /decl/surgery_step/fix_tendon/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool) diff --git a/html/changelogs/TendonFix.yml b/html/changelogs/TendonFix.yml new file mode 100644 index 00000000000..fef91398056 --- /dev/null +++ b/html/changelogs/TendonFix.yml @@ -0,0 +1,6 @@ +author: TheGreyWolf + +delete-after: True + +changes: + - bugfix: "Tendon repair surgery now works again."