From dee06075a4a85daa6781458c34e760d3b8acbe4d Mon Sep 17 00:00:00 2001 From: BiancaWilkson <42818125+BiancaWilkson@users.noreply.github.com> Date: Sat, 31 Jan 2026 23:03:23 -0500 Subject: [PATCH] Fixes helmets sometimes getting stuck on the screen after closing your inventory (#31512) * Removes extraneous call * Whoops --- code/datums/elements/clothing_adjustment.dm | 6 ------ 1 file changed, 6 deletions(-) diff --git a/code/datums/elements/clothing_adjustment.dm b/code/datums/elements/clothing_adjustment.dm index 44551cf476d..3e65d876a41 100644 --- a/code/datums/elements/clothing_adjustment.dm +++ b/code/datums/elements/clothing_adjustment.dm @@ -81,12 +81,6 @@ /datum/element/clothing_adjustment/skulk_headgear/on_item_dropped(datum/source, mob/target) UnregisterSignal(target, list(COMSIG_CARBON_APPLY_OVERLAY)) - var/mob/living/carbon/human/human = target - if(!istype(human)) - return - - human.update_inv_head() - /datum/element/clothing_adjustment/skulk_headgear/proc/on_carbon_apply_overlay(mob/living/carbon/human/source, cache_index) SIGNAL_HANDLER // COMSIG_CARBON_APPLY_OVERLAY if(cache_index != HEAD_LAYER || !istype(source))