diff options
| -rwxr-xr-x | azalea-world/src/chunk_storage.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea-world/src/chunk_storage.rs b/azalea-world/src/chunk_storage.rs index 5f8b8951..1709a903 100755 --- a/azalea-world/src/chunk_storage.rs +++ b/azalea-world/src/chunk_storage.rs @@ -517,7 +517,7 @@ impl Default for ChunkStorage { pub fn section_index(y: i32, min_y: i32) -> u32 { if y < min_y { #[cfg(debug_assertions)] - warn!("y ({y}) must be at most {min_y}"); + warn!("y ({y}) must be at least {min_y}"); #[cfg(not(debug_assertions))] trace!("y ({y}) must be at least {min_y}") }; |
