Skip to content

Commit

Permalink
Remove unnecessary logs and loading
Browse files Browse the repository at this point in the history
- Load chunk (0,0) only in debug mode. This prevents crashes when the chunk for (0,0) does not exist, since this is only used for checking the size of the chunk packet.
- Remove log: `Getting chunks x, from region file y`
  • Loading branch information
lukas0008 committed Aug 13, 2024
1 parent b68e9b8 commit 59749af
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
5 changes: 0 additions & 5 deletions pumpkin-world/src/world.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,11 +97,6 @@ impl Level {
chunks: Vec<(i32, i32)>,
) -> Vec<((i32, i32), Result<ChunkData, WorldError>)> {
// dbg!(at);
println!(
"Getting chunks {:?}, from region file {}",
&chunks,
region_file.to_str().unwrap_or("")
);
// return different error when file is not found (because that means that the chunks have just not been generated yet)
let mut region_file = match File::open(region_file).await {
Ok(f) => f,
Expand Down
1 change: 1 addition & 0 deletions pumpkin/src/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -351,6 +351,7 @@ impl Server {
});

chunks.iter().for_each(|chunk| {
#[cfg(debug_assertions)]
if chunk.0 == (0, 0) {
let mut test = ByteBuffer::empty();
CChunkData(chunk.1.as_ref().unwrap()).write(&mut test);
Expand Down

0 comments on commit 59749af

Please sign in to comment.