aboutsummaryrefslogtreecommitdiff
path: root/azalea/examples/testbot/commands/movement.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea/examples/testbot/commands/movement.rs')
-rw-r--r--azalea/examples/testbot/commands/movement.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea/examples/testbot/commands/movement.rs b/azalea/examples/testbot/commands/movement.rs
index 1596ce89..36ff42ff 100644
--- a/azalea/examples/testbot/commands/movement.rs
+++ b/azalea/examples/testbot/commands/movement.rs
@@ -116,7 +116,7 @@ pub fn register(commands: &mut CommandDispatcher<Mutex<CommandSource>>) {
get_integer(ctx, "y").unwrap(),
get_integer(ctx, "z").unwrap(),
);
- println!("{:?}", pos);
+ println!("{pos:?}");
let source = ctx.source.lock();
source.bot.look_at(pos.center());
1