aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormat <github@matdoes.dev>2022-05-14 18:55:08 -0500
committermat <github@matdoes.dev>2022-05-14 18:55:08 -0500
commit8fb95866093245bd802bebec08148c87f1188db3 (patch)
treeaf8db4d3ac522eead5c6cec904275bf5503ca37f
parente58c9390a717517db0bf4366c55a3802c832b144 (diff)
downloadazalea-drasl-8fb95866093245bd802bebec08148c87f1188db3.tar.xz
remove some console.logs
-rw-r--r--azalea-world/src/lib.rs2
1 files changed, 0 insertions, 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
}