From 7ab3b8924f64f7eadb6b8928b6fae73cb06e4c2f Mon Sep 17 00:00:00 2001 From: mat Date: Sun, 28 Dec 2025 14:31:41 +0500 Subject: move Event and auto_reconnect to the azalea crate --- azalea/src/bot.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'azalea/src/bot.rs') diff --git a/azalea/src/bot.rs b/azalea/src/bot.rs index 6f39c2fe..73b225b2 100644 --- a/azalea/src/bot.rs +++ b/azalea/src/bot.rs @@ -130,9 +130,7 @@ impl Client { /// Mine a block. /// /// This won't turn the bot's head towards the block, so if that's necessary - /// you'll have to do that yourself with [`look_at`]. - /// - /// [`look_at`]: crate::prelude::BotClientExt::look_at + /// you'll have to do that yourself with [`look_at`](Client::look_at). pub async fn mine(&self, position: BlockPos) { self.start_mining(position); @@ -211,5 +209,7 @@ impl PluginGroup for DefaultBotPlugins { .add(crate::auto_respawn::AutoRespawnPlugin) .add(crate::accept_resource_packs::AcceptResourcePacksPlugin) .add(crate::tick_broadcast::TickBroadcastPlugin) + .add(crate::events::EventsPlugin) + .add(crate::auto_reconnect::AutoReconnectPlugin) } } -- cgit v1.2.3