From bd110689f990961f3e5599b608c3a914ba277c89 Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Fri, 7 Nov 2025 10:20:05 -0600 Subject: remove not needed ?: Signed-off-by: Matt Strapp --- wwb/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wwb/src/main.rs b/wwb/src/main.rs index 6052fa5..68257f5 100644 --- a/wwb/src/main.rs +++ b/wwb/src/main.rs @@ -183,7 +183,7 @@ fn game_loop(game: &mut Game, path: &str, do_save: &AtomicBool) { let mut i = 0; for player in game.players.iter() { log::warn!( - "Player {:?} is currently on space {}. Their high score is {}.", + "Player {} is currently on space {}. Their high score is {}.", { let tmp = i; i += 1; tmp }, player.current_space, player.high_score -- cgit v1.2.3