From c943d40afc5661e4ee55bcab3a2e99ad7a93bcac Mon Sep 17 00:00:00 2001 From: DGamerL <108773801+DGamerL@users.noreply.github.com> Date: Fri, 27 Feb 2026 20:36:56 +0100 Subject: [PATCH] Makes brute surgery not runtime (#31702) --- code/modules/surgery/organs/organ_external.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/surgery/organs/organ_external.dm b/code/modules/surgery/organs/organ_external.dm index 5975f23a623..28c408ab219 100644 --- a/code/modules/surgery/organs/organ_external.dm +++ b/code/modules/surgery/organs/organ_external.dm @@ -342,9 +342,9 @@ brute_dam = max(brute_dam - brute, 0) burn_dam = max(burn_dam - burn, 0) - if(internal) + var/datum/wound/fracture = get_wound(/datum/wound/fracture) + if(internal && fracture) status &= ~ORGAN_BROKEN - var/datum/wound/fracture = get_wound(/datum/wound/fracture) fracture.cure_wound() perma_injury = 0