aboutsummaryrefslogtreecommitdiff
path: root/bot
diff options
context:
space:
mode:
Diffstat (limited to 'bot')
-rw-r--r--bot/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/src/main.rs b/bot/src/main.rs
index 93d83be9..1f2cb6e1 100644
--- a/bot/src/main.rs
+++ b/bot/src/main.rs
@@ -26,7 +26,7 @@ async fn main() {
let state = client.state.lock().await;
let world = state.world.as_ref().unwrap();
let c = world.get_block_state(&BlockPos::new(5, 78, -2)).unwrap();
- println!("{:?}", c);
+ println!("block state: {:?}", c);
}
}
}