diff options
| author | mat <git@matdoes.dev> | 2026-01-18 09:50:45 -1245 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2026-01-19 05:35:49 +0700 |
| commit | 268c62587e090c72b67a29e1cc42cda6c9d7340b (patch) | |
| tree | 961d0b4d0bd22d17f4ad6c8b77f02f02566b838e /azalea-world/src | |
| parent | fb92f65b3da49b6487bf6fa05010b12a3ab5d4ed (diff) | |
| download | azalea-drasl-268c62587e090c72b67a29e1cc42cda6c9d7340b.tar.xz | |
add simulation-based pathfinder execution engine
Diffstat (limited to 'azalea-world/src')
| -rw-r--r-- | azalea-world/src/container.rs | 2 | ||||
| -rw-r--r-- | azalea-world/src/lib.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/azalea-world/src/container.rs b/azalea-world/src/container.rs index af344dc0..c0fa2633 100644 --- a/azalea-world/src/container.rs +++ b/azalea-world/src/container.rs @@ -94,7 +94,7 @@ impl Worlds { /// If two entities share the same world name, then Azalea assumes that they're /// in the same world. #[derive(Clone, Component, Debug, Deref, DerefMut, Eq, Hash, PartialEq)] -#[doc(alias("worldname", "world name", "dimension"))] +#[doc(alias("dimension"))] pub struct WorldName(pub Identifier); impl WorldName { /// Create a new `WorldName` with the given name. diff --git a/azalea-world/src/lib.rs b/azalea-world/src/lib.rs index 325d3b43..8bb23071 100644 --- a/azalea-world/src/lib.rs +++ b/azalea-world/src/lib.rs @@ -12,7 +12,7 @@ mod world; pub use bit_storage::BitStorage; pub use chunk_storage::{Chunk, ChunkStorage, PartialChunkStorage, Section}; -pub use container::{Worlds, WorldName}; +pub use container::{WorldName, Worlds}; pub use world::*; #[deprecated = "renamed to `WorldName`."] |
