diff options
| author | mat <git@matdoes.dev> | 2025-01-21 23:53:11 +0000 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2025-01-21 23:53:11 +0000 |
| commit | 53fca5faf4878c7afcd65f1eb0811c2b8e02a214 (patch) | |
| tree | 9784b9f5f66f330230e774a7b40f31f4061ddd23 /azalea-client/src/chunks.rs | |
| parent | 900a4234e5b7fbf24a557907bce7c3b7ce30822e (diff) | |
| download | azalea-drasl-53fca5faf4878c7afcd65f1eb0811c2b8e02a214.tar.xz | |
fix errors when switching worlds
Diffstat (limited to 'azalea-client/src/chunks.rs')
| -rw-r--r-- | azalea-client/src/chunks.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/azalea-client/src/chunks.rs b/azalea-client/src/chunks.rs index 7056efa4..0267c164 100644 --- a/azalea-client/src/chunks.rs +++ b/azalea-client/src/chunks.rs @@ -111,7 +111,10 @@ pub fn handle_receive_chunk_events( heightmaps, &mut instance.chunks, ) { - error!("Couldn't set chunk data: {e}"); + error!( + "Couldn't set chunk data: {e}. World height: {}", + instance.chunks.height + ); } } } |
