From 7f651481f68235f180a2176069e36f82c765bca8 Mon Sep 17 00:00:00 2001 From: Robert Garrett Date: Sun, 19 Oct 2025 09:57:36 -0500 Subject: [PATCH] Quiet some lints, remove some dev logging --- client/src/ui.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/client/src/ui.rs b/client/src/ui.rs index d4acd0b..61f80e1 100644 --- a/client/src/ui.rs +++ b/client/src/ui.rs @@ -35,7 +35,6 @@ pub fn spawn_main_menu(mut commands: Commands) { let mut quit_button = cmds.spawn(button_bundle("Quit Game")); quit_button.observe( |_trigger: On>, mut messages: MessageWriter| { - info!("The quit button was pressed."); // Quit the game if the quit button was pressed. messages.write(AppExit::Success); }, @@ -77,7 +76,7 @@ pub fn button_hover_start( trigger: On>, mut button_colors: Query<(&mut BackgroundColor, &mut BorderColor), With