From 4ddc659844570fa4e734cf44363c7a7b81b41efb Mon Sep 17 00:00:00 2001 From: Ghom <42542238+Ghommie@users.noreply.github.com> Date: Sun, 11 Jul 2021 08:04:33 +0200 Subject: [PATCH] Fixes attach_limb() not calling update_disabled() (#60128) * Fixes attach_limb() not calling update_disabled() * Ok, that's new. But at the core, the framework's the same. --- code/modules/surgery/bodyparts/dismemberment.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/surgery/bodyparts/dismemberment.dm b/code/modules/surgery/bodyparts/dismemberment.dm index 137168b1b78..48718c9a15b 100644 --- a/code/modules/surgery/bodyparts/dismemberment.dm +++ b/code/modules/surgery/bodyparts/dismemberment.dm @@ -361,6 +361,8 @@ LAZYADD(new_limb_owner.all_scars, scar) update_bodypart_damage_state() + if(can_be_disabled) + update_disabled() new_limb_owner.updatehealth() new_limb_owner.update_body()