aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authormat <27899617+mat-1@users.noreply.github.com>2022-06-20 06:22:16 +0000
committerGitHub <noreply@github.com>2022-06-20 06:22:16 +0000
commita1484f66290517b6c36f2e82c92613f23d2c4935 (patch)
treef0a590ef6deac0c23c932773354fc4f75903953a /examples
parente2553bbaf2a550f4941b924e703a922345a1389f (diff)
parent405a00c0d1908a4b3fbd8e6684c77dfb178ac55d (diff)
downloadazalea-drasl-a1484f66290517b6c36f2e82c92613f23d2c4935.tar.xz
Merge branch 'main' into 1.19.1
Diffstat (limited to 'examples')
-rw-r--r--examples/craft_dig_straight_down.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/craft_dig_straight_down.rs b/examples/craft_dig_straight_down.rs
index 79985672..1d1a89f6 100644
--- a/examples/craft_dig_straight_down.rs
+++ b/examples/craft_dig_straight_down.rs
@@ -14,7 +14,7 @@ loop {
pathfinder::Goals::NearXZ(5, azalea::BlockXZ(0, 0))
).await;
let chest = bot.open_chest(&bot.world.find_one_block(|b| b.id == "minecraft:chest")).await.unwrap();
- bot.take_amount(&chest, 3, |i| i.id == "#minecraft:planks").await;
+ bot.take_amount(&chest, 5, |i| i.id == "#minecraft:planks").await;
// when rust adds async drop this won't be necessary
chest.close().await;