From 63190baca4296c36a363a86f25e42c2fdbbd8796 Mon Sep 17 00:00:00 2001 From: Roxy <94389951+SapphoQueer@users.noreply.github.com> Date: Thu, 15 Jan 2026 03:48:23 +0100 Subject: [PATCH] Fixes monster_core organs keeping their HUD buttons after being removed from the body (#94867) ## About The Pull Request Title. afbeelding ## Why It's Good For The Game Bug fix Good ## Changelog :cl: fix: The buttons for lavaland organs no longer show up after their removal from your body. /:cl: --- code/modules/mining/equipment/monster_organs/monster_organ.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mining/equipment/monster_organs/monster_organ.dm b/code/modules/mining/equipment/monster_organs/monster_organ.dm index a76002959a2..f613c425ad4 100644 --- a/code/modules/mining/equipment/monster_organs/monster_organ.dm +++ b/code/modules/mining/equipment/monster_organs/monster_organ.dm @@ -99,7 +99,7 @@ /obj/item/organ/monster_core/on_mob_remove(mob/living/carbon/target_carbon, special, movement_flags) if (!inert && !special) - owner.visible_message(span_notice("[src] rapidly decays as it's removed.")) + target_carbon?.visible_message(span_notice("[src] rapidly decays as it's removed.")) go_inert() return ..()