diff options
author | metamuffin <metamuffin@disroot.org> | 2024-07-16 16:27:21 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-07-16 16:27:21 +0200 |
commit | 3c16211e2a2f0c3dbe741da20c8499e8e6a15f85 (patch) | |
tree | 78ad4c50c77a6fbdb0d3bc909cdd182c2217eb5d | |
parent | 1991bcbc22a1e365c5d3828d62db1f22c8aeac9d (diff) | |
download | hurrycurry-3c16211e2a2f0c3dbe741da20c8499e8e6a15f85.tar hurrycurry-3c16211e2a2f0c3dbe741da20c8499e8e6a15f85.tar.bz2 hurrycurry-3c16211e2a2f0c3dbe741da20c8499e8e6a15f85.tar.zst |
remove logging
-rw-r--r-- | light-client/src/game.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/light-client/src/game.rs b/light-client/src/game.rs index b35a15d7..b6bacf74 100644 --- a/light-client/src/game.rs +++ b/light-client/src/game.rs @@ -258,7 +258,6 @@ impl Game { impl Item { pub fn draw(&self, ctx: &mut SpriteRenderer, item_sprites: &[SpriteRect]) { - eprintln!("item {} at {}", self.kind.0, self.position); item_sprites[self.kind.0].draw_at(ctx, self.position) } } |