aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShayne Hartford <shaybox@shaybox.com>2024-11-22 22:30:01 -0500
committerGitHub <noreply@github.com>2024-11-22 21:30:01 -0600
commite443c5d76e706132ab554e97513d2b159f4ab0a1 (patch)
tree05acb070bfa6f262362f19af9c325bcf705a12c9
parenta8125cd198832ee46f9e76e8e9d09cf5780ad4c4 (diff)
downloadazalea-drasl-e443c5d76e706132ab554e97513d2b159f4ab0a1.tar.xz
Fix debug warning (#186)
-rwxr-xr-xazalea-world/src/chunk_storage.rs2
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}")
};