diff options
| author | mat <github@matdoes.dev> | 2022-12-08 18:39:35 -0600 |
|---|---|---|
| committer | mat <github@matdoes.dev> | 2022-12-08 18:39:35 -0600 |
| commit | 70e2dfed16da8d5130460ea15b47701e622f4a9f (patch) | |
| tree | 41f670baf3a05ed180880ec2a11d8e5f6a1a1599 /azalea-world/src/chunk_storage.rs | |
| parent | f2076daba5cfcce81399b075ba9258fbdc2012fa (diff) | |
| download | azalea-drasl-70e2dfed16da8d5130460ea15b47701e622f4a9f.tar.xz | |
wrap_comments = true
Diffstat (limited to 'azalea-world/src/chunk_storage.rs')
| -rwxr-xr-x | azalea-world/src/chunk_storage.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/azalea-world/src/chunk_storage.rs b/azalea-world/src/chunk_storage.rs index 6a8a995e..7d4486e4 100755 --- a/azalea-world/src/chunk_storage.rs +++ b/azalea-world/src/chunk_storage.rs @@ -50,9 +50,9 @@ pub struct ChunkStorage { pub chunks: HashMap<ChunkPos, Arc<Mutex<Chunk>>>, } -/// A single chunk in a world (16*?*16 blocks). This only contains the blocks and biomes. You -/// can derive the height of the chunk from the number of sections, but you -/// need a [`ChunkStorage`] to get the minimum Y coordinate. +/// A single chunk in a world (16*?*16 blocks). This only contains the blocks +/// and biomes. You can derive the height of the chunk from the number of +/// sections, but you need a [`ChunkStorage`] to get the minimum Y coordinate. #[derive(Debug)] pub struct Chunk { pub sections: Vec<Section>, |
