diff --git a/client/scripts/main.gd b/client/scripts/main.gd index df1edceda..cdbafbce2 100644 --- a/client/scripts/main.gd +++ b/client/scripts/main.gd @@ -64,10 +64,10 @@ func _ready() -> void: # D-170: Register HUD nodes into visibility groups # Gameplay group — hidden when implant panels are open - for node: Control in [hud, minimap, stance_indicator, cursor_renderer, + for node in [hud, minimap, stance_indicator, interaction_prompt, interaction_list, inventory_grid, news_ticker, examine_display, world_radial]: - if node: + if node and node is Control: HudGroups.register(node, "gameplay") # #775: Initialize extracted components