diff options
| author | Matt Strapp <matt@mattstrapp.net> | 2025-11-07 10:20:05 -0600 |
|---|---|---|
| committer | Matt Strapp <matt@mattstrapp.net> | 2025-11-07 10:20:05 -0600 |
| commit | bd110689f990961f3e5599b608c3a914ba277c89 (patch) | |
| tree | 6565716ffecfae7e611bd81ad94749200f36131a | |
| parent | Target native CPU (diff) | |
| download | wwb-bd110689f990961f3e5599b608c3a914ba277c89.tar wwb-bd110689f990961f3e5599b608c3a914ba277c89.tar.gz wwb-bd110689f990961f3e5599b608c3a914ba277c89.tar.bz2 wwb-bd110689f990961f3e5599b608c3a914ba277c89.tar.lz wwb-bd110689f990961f3e5599b608c3a914ba277c89.tar.xz wwb-bd110689f990961f3e5599b608c3a914ba277c89.tar.zst wwb-bd110689f990961f3e5599b608c3a914ba277c89.zip | |
remove not needed ?:
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
| -rw-r--r-- | wwb/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
