From a5caab7ddc38f99b62aab31b576153a3f1b2ce94 Mon Sep 17 00:00:00 2001 From: Gabriel Kaszewski Date: Sat, 24 Jan 2026 06:16:34 +0100 Subject: [PATCH] add log message for completion of all days in GameManager --- rust/src/systems/game_manager.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rust/src/systems/game_manager.rs b/rust/src/systems/game_manager.rs index d545b96..755dfaa 100644 --- a/rust/src/systems/game_manager.rs +++ b/rust/src/systems/game_manager.rs @@ -109,6 +109,8 @@ impl GameManager { } if index >= self.days.len() as i32 { + godot_print!("GameManager: All days complete!"); + self.cleanup_level(); if let Some(s) = &mut self.win_screen { s.set_visible(false);