From 8fb95866093245bd802bebec08148c87f1188db3 Mon Sep 17 00:00:00 2001 From: mat Date: Sat, 14 May 2022 18:55:08 -0500 Subject: remove some console.logs --- azalea-world/src/lib.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/azalea-world/src/lib.rs b/azalea-world/src/lib.rs index 4641729c..766c61f0 100644 --- a/azalea-world/src/lib.rs +++ b/azalea-world/src/lib.rs @@ -177,11 +177,9 @@ impl Chunk { pub fn get(&self, pos: &ChunkBlockPos, min_y: i32) -> u32 { let section_index = self.section_index(pos.y, min_y); - println!("section index: {}", section_index); // TODO: make sure the section exists let section = &self.sections[section_index as usize]; let chunk_section_pos = ChunkSectionBlockPos::from(pos); - println!("chunk section pos: {:?}", chunk_section_pos); let block_state = section.get(chunk_section_pos); block_state } -- cgit v1.2.3