aboutsummaryrefslogtreecommitdiff
path: root/azalea/examples/testbot/commands
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2026-03-19 04:12:20 -0100
committermat <git@matdoes.dev>2026-03-19 04:12:20 -0100
commitb03d2942e1bef98e13acadde5cbb8856a3f8c74d (patch)
treef1be3cd3151c3194677001d520aedf2ad18f92b8 /azalea/examples/testbot/commands
parent176907fa8bc2c03f245b837f09a80d073856d4dd (diff)
downloadazalea-drasl-b03d2942e1bef98e13acadde5cbb8856a3f8c74d.tar.xz
implement speed effect
Diffstat (limited to 'azalea/examples/testbot/commands')
-rw-r--r--azalea/examples/testbot/commands/debug.rs8
1 files changed, 8 insertions, 0 deletions
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<Mutex<CommandSource>>) {
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();