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