From d760d3e5ab23fd23292ec82be0be66a3c839026d Mon Sep 17 00:00:00 2001 From: SmArtKar <44720187+SmArtKar@users.noreply.github.com> Date: Sat, 18 Oct 2025 19:05:43 +0200 Subject: [PATCH] Fixes autoobserve storage interfaces getting stuck for ghosts (#93460) ## About The Pull Request Closes #93459 ## Changelog :cl: fix: Fixed autoobserve storage interfaces getting stuck for ghosts /:cl: --- code/_onclick/hud/hud.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/_onclick/hud/hud.dm b/code/_onclick/hud/hud.dm index dc29f7ee9fd..8477a46033a 100644 --- a/code/_onclick/hud/hud.dm +++ b/code/_onclick/hud/hud.dm @@ -344,7 +344,7 @@ GLOBAL_LIST_INIT(available_ui_styles, list( screenmob.client.screen += infodisplay if(always_visible_inventory.len) screenmob.client.screen += always_visible_inventory - if(open_containers.len) + if(open_containers.len && screenmob == mymob) // Don't show open inventories to ghosts screenmob.client.screen += open_containers screenmob.client.screen += toggle_palette