From 432be07370380ee09ec7e7e346c01a50731d1990 Mon Sep 17 00:00:00 2001 From: crumblingstatue Date: Fri, 14 Apr 2023 11:45:25 +0200 Subject: [PATCH] Debug stuff --- src/world.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/world.rs b/src/world.rs index 7764acd..ce6e817 100644 --- a/src/world.rs +++ b/src/world.rs @@ -90,7 +90,7 @@ impl World { .unwrap(); let mut existence_bitset = read_existence_bitset_file(&mut f); dbg!(existence_bitset); - dbg!(f.stream_position()); + let _ = dbg!(f.stream_position()); let mut decomp = zstd::decode_all(&mut f).unwrap(); let (loc_x, loc_y) = pos.local(); dbg!(loc_x, loc_y);