diff options
author | metamuffin <metamuffin@disroot.org> | 2025-06-06 21:38:24 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-06-06 21:38:24 +0200 |
commit | f8dfbaa2869f40253ccd19ee3655b8dbd5390d8e (patch) | |
tree | d1ce15aa264a787c81ca996752e5c2736d21fb62 /server/src/state.rs | |
parent | 205d5f2ae8eaea03a78d3c027913c0fa44acceea (diff) | |
download | hurrycurry-f8dfbaa2869f40253ccd19ee3655b8dbd5390d8e.tar hurrycurry-f8dfbaa2869f40253ccd19ee3655b8dbd5390d8e.tar.bz2 hurrycurry-f8dfbaa2869f40253ccd19ee3655b8dbd5390d8e.tar.zst |
manual clippy and other cleanup
Diffstat (limited to 'server/src/state.rs')
-rw-r--r-- | server/src/state.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/state.rs b/server/src/state.rs index a509a3bd..bd97266e 100644 --- a/server/src/state.rs +++ b/server/src/state.rs @@ -24,7 +24,7 @@ impl Server { pub async fn tick_outer(&mut self, dt: f32) -> anyhow::Result<()> { let should_pause = self.connections.iter().all(|c| c.1 .1); if should_pause != self.paused { - info!("Game paused: {}", should_pause); + info!("Game paused: {should_pause}"); self.paused = should_pause; for p in self.game.players.keys() { self.packet_out |