diff options
| author | Matt Strapp <matt@mattstrapp.net> | 2025-11-12 11:28:23 -0600 |
|---|---|---|
| committer | Matt Strapp <matt@mattstrapp.net> | 2025-11-12 11:28:23 -0600 |
| commit | 7d5053d3db9af8d9df81485166c894ad7c2ce3b0 (patch) | |
| tree | 20d3226c873a9bf78b13690b03378c22adce22dd | |
| parent | remove not needed ?: (diff) | |
| download | wwb-7d5053d3db9af8d9df81485166c894ad7c2ce3b0.tar wwb-7d5053d3db9af8d9df81485166c894ad7c2ce3b0.tar.gz wwb-7d5053d3db9af8d9df81485166c894ad7c2ce3b0.tar.bz2 wwb-7d5053d3db9af8d9df81485166c894ad7c2ce3b0.tar.lz wwb-7d5053d3db9af8d9df81485166c894ad7c2ce3b0.tar.xz wwb-7d5053d3db9af8d9df81485166c894ad7c2ce3b0.tar.zst wwb-7d5053d3db9af8d9df81485166c894ad7c2ce3b0.zip | |
Fix a missing pretty string
Diffstat (limited to '')
| -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 68257f5..5ca78b4 100644 --- a/wwb/src/main.rs +++ b/wwb/src/main.rs @@ -158,7 +158,7 @@ fn game_loop(game: &mut Game, path: &str, do_save: &AtomicBool) { log::debug!( "Player {} rolled a non-5 after rolling a 5 on turn {} and goes back to Start", current_player_number, - game.turn_count + number_to_pretty_string(game.turn_count) ); current_space = 0; } |
