Fix buta tendon reaction (#23137)

# Summary

This PR fixes the Butazoline OD/cryo treatment reaction not properly
healing cut tendons.
This commit is contained in:
FabianK3
2026-08-24 21:40:14 +00:00
committed by GitHub
parent d32a59d614
commit 17d6672e1c
2 changed files with 8 additions and 2 deletions
@@ -74,8 +74,8 @@
if(((M.chem_doses[type] > 30) && prob(2)) || ((M.bodytemperature < 189) && prob(10))) //Butazoline treats torn tendons when dose is greater than 30u. Alternatively, if the drug is used in a cryotube.
var/mob/living/carbon/human/H = M
for(var/obj/item/organ/external/E in H.organs)
if(E.status & TENDON_CUT)
E.status &= ~TENDON_CUT
if(E.tendon && (E.tendon_status() & TENDON_CUT) && E.tendon.can_recover())
E.tendon.rejuvenate()
M.visible_message("<b>[M]</b> spasms!", SPAN_DANGER("You feel a stabbing pain in your [E.name]!"))
/singleton/reagent/kelotane