From b03d2942e1bef98e13acadde5cbb8856a3f8c74d Mon Sep 17 00:00:00 2001 From: mat Date: Thu, 19 Mar 2026 04:12:20 -0100 Subject: implement speed effect --- azalea/examples/testbot/commands.rs | 3 ++- azalea/examples/testbot/commands/debug.rs | 8 ++++++++ azalea/examples/testbot/main.rs | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) (limited to 'azalea/examples') diff --git a/azalea/examples/testbot/commands.rs b/azalea/examples/testbot/commands.rs index 930f41ca..4c0e7235 100644 --- a/azalea/examples/testbot/commands.rs +++ b/azalea/examples/testbot/commands.rs @@ -23,8 +23,9 @@ impl CommandSource { pub fn reply(&self, message: impl Into) { let message = message.into(); if self.chat.is_whisper() { + // /msg instead of /w for compat with custom servers self.bot - .chat(format!("/w {} {message}", self.chat.sender().unwrap())); + .chat(format!("/msg {} {message}", self.chat.sender().unwrap())); } else { self.bot.chat(message); } diff --git a/azalea/examples/testbot/commands/debug.rs b/azalea/examples/testbot/commands/debug.rs index 12f6d362..cd487abb 100644 --- a/azalea/examples/testbot/commands/debug.rs +++ b/azalea/examples/testbot/commands/debug.rs @@ -29,6 +29,14 @@ pub fn register(commands: &mut CommandDispatcher>) { source.reply("pong!"); 1 })); + commands.register( + literal("say").then(argument("message", greedy_string()).executes(|ctx: &Ctx| { + let source = ctx.source.lock(); + let message = get_string(ctx, "message").unwrap(); + source.bot.chat(message); + 1 + })), + ); commands.register(literal("disconnect").executes(|ctx: &Ctx| { let source = ctx.source.lock(); diff --git a/azalea/examples/testbot/main.rs b/azalea/examples/testbot/main.rs index 63d83c8a..f5f6c096 100644 --- a/azalea/examples/testbot/main.rs +++ b/azalea/examples/testbot/main.rs @@ -120,7 +120,7 @@ pub struct State { impl State { fn new() -> Self { Self { - killaura: true, + killaura: false, task: Arc::new(Mutex::new(BotTask::None)), } } -- cgit v1.2.3