From cfbfdd77b4a400ef3bace378ff413aa2ff3bf57c Mon Sep 17 00:00:00 2001 From: mat Date: Mon, 8 Jan 2024 00:12:54 -0600 Subject: fix ping packet, explosion packet, and panic less --- azalea/examples/testbot/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'azalea/examples/testbot') diff --git a/azalea/examples/testbot/main.rs b/azalea/examples/testbot/main.rs index 9a3bd4f8..baa078d7 100644 --- a/azalea/examples/testbot/main.rs +++ b/azalea/examples/testbot/main.rs @@ -5,7 +5,7 @@ //! - Run `cargo r --example testbot` //! - Commands are prefixed with `!` in chat. You can send them either in public //! chat or as a /msg. -//! - Some commands to try are `!goto`, `!killaura`, `!down`. Check the +//! - Some commands to try are `!goto`, `!killaura true`, `!down`. Check the //! `commands` directory to see all of them. #![feature(async_closure)] @@ -31,7 +31,7 @@ const ADDRESS: &str = "localhost"; /// Whether the bot should run /particle a ton of times to show where it's /// pathfinding to. You should only have this on if the bot has operator /// permissions, otherwise it'll just spam the server console unnecessarily. -const PATHFINDER_DEBUG_PARTICLES: bool = true; +const PATHFINDER_DEBUG_PARTICLES: bool = false; #[tokio::main] async fn main() { -- cgit v1.2.3