aboutsummaryrefslogtreecommitdiff
path: root/azalea-world/src/heightmap.rs
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2026-03-21 08:05:27 +0330
committermat <git@matdoes.dev>2026-03-21 11:35:31 +0700
commit88606d9ce9e13fcdd4ab5ce26e52630dee614c1e (patch)
treeee9d1db9871eba381a876e7472946f267280a8ff /azalea-world/src/heightmap.rs
parent7965bb7953bfcabd475e213db335d90e0db28497 (diff)
downloadazalea-drasl-88606d9ce9e13fcdd4ab5ce26e52630dee614c1e.tar.xz
Extensible ChunkStorage
Co-authored-by: sdwhw <191973436+sdwhw@users.noreply.github.com>
Diffstat (limited to 'azalea-world/src/heightmap.rs')
-rw-r--r--azalea-world/src/heightmap.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea-world/src/heightmap.rs b/azalea-world/src/heightmap.rs
index 6d99ba9d..789f83eb 100644
--- a/azalea-world/src/heightmap.rs
+++ b/azalea-world/src/heightmap.rs
@@ -3,7 +3,7 @@ use azalea_core::{heightmap_kind::HeightmapKind as HeightmapKind_, math, positio
use azalea_registry::tags::blocks::LEAVES;
use tracing::warn;
-use crate::{BitStorage, Section, chunk_storage::get_block_state_from_sections};
+use crate::{BitStorage, Section, chunk::get_block_state_from_sections};
// TODO: when removing this deprecated marker, also rename `HeightmapKind_` back
// to `HeightmapKind`.