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."