aboutsummaryrefslogtreecommitdiff
path: root/azalea/src/lib.rs
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2023-07-15 16:35:23 -0500
committermat <git@matdoes.dev>2023-07-15 16:35:23 -0500
commita839c6a923a737fab61536cec0258fdd83106368 (patch)
tree8dfdb984da72dd60ad77a5f171e7db4efd296103 /azalea/src/lib.rs
parentcde7e35046b726b07bf3e067c080b85a12b2fd74 (diff)
downloadazalea-drasl-a839c6a923a737fab61536cec0258fdd83106368.tar.xz
fix brigadier booleans
Diffstat (limited to 'azalea/src/lib.rs')
-rw-r--r--azalea/src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/azalea/src/lib.rs b/azalea/src/lib.rs
index 0aff2a56..f564cd9b 100644
--- a/azalea/src/lib.rs
+++ b/azalea/src/lib.rs
@@ -5,7 +5,7 @@
mod auto_respawn;
mod bot;
-mod container;
+pub mod container;
pub mod pathfinder;
pub mod prelude;
pub mod swarm;
@@ -20,7 +20,7 @@ pub use azalea_core::{BlockPos, Vec3};
pub use azalea_entity as entity;
pub use azalea_protocol as protocol;
pub use azalea_registry::{Block, EntityKind, Item};
-pub use azalea_world::Instance;
+pub use azalea_world as world;
pub use bot::DefaultBotPlugins;
use ecs::component::Component;
use futures::Future;