diff options
| author | mat <github@matdoes.dev> | 2022-05-14 15:02:13 -0500 |
|---|---|---|
| committer | mat <github@matdoes.dev> | 2022-05-14 15:02:13 -0500 |
| commit | e58c9390a717517db0bf4366c55a3802c832b144 (patch) | |
| tree | a55bdc2d8fe40786ce475cc6c124134b419f3aa6 /bot | |
| parent | 6d2fd8afbad44bbe88f701e1d67cc2f251246c07 (diff) | |
| download | azalea-drasl-e58c9390a717517db0bf4366c55a3802c832b144.tar.xz | |
get_block_state works
Diffstat (limited to 'bot')
| -rw-r--r-- | bot/src/main.rs | 2 |
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); } } } |
