Skip to content

Commit

Permalink
Fix debug warning (#186)
Browse files Browse the repository at this point in the history
  • Loading branch information
ShayBox authored Nov 23, 2024
1 parent a8125cd commit e443c5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion azalea-world/src/chunk_storage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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}")
};
Expand Down

0 comments on commit e443c5d

Please sign in to comment.