From 3a40ee8c5209fdec853a68859930cf8e5fa1244b Mon Sep 17 00:00:00 2001 From: god Date: Mon, 6 Jul 2026 01:57:08 +0800 Subject: [PATCH] fix compile error in lobby_room (remove dangling _on_doors_update call) --- scenes/ui/lobby_room.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scenes/ui/lobby_room.gd b/scenes/ui/lobby_room.gd index aee3aa0..2990a7b 100644 --- a/scenes/ui/lobby_room.gd +++ b/scenes/ui/lobby_room.gd @@ -153,7 +153,7 @@ func _on_room_joined(room_data: Dictionary) -> void: _on_enable_cycle_timer_changed(LobbyManager.enable_cycle_timer) _on_scarcity_mode_changed(LobbyManager.scarcity_mode) _on_sng_update() - _on_doors_update() + # _on_doors_update() if lobby.area_left_btn: lobby.area_left_btn.disabled = not is_host if lobby.area_right_btn: lobby.area_right_btn.disabled = not is_host