From b7a72e5f77544866630f40bf4634b1f06adc717d Mon Sep 17 00:00:00 2001 From: Navid Sassan Date: Thu, 23 Nov 2023 02:00:20 +0100 Subject: [PATCH] re-try dropping for example if the target is full --- lava-collector | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lava-collector b/lava-collector index e4b1a10..628ba6c 100644 --- a/lava-collector +++ b/lava-collector @@ -43,7 +43,9 @@ local function despositRefill() for i = 1, 16 do turtle.select(i) if compareItemName("minecraft:lava_bucket") then - turtle.dropDown() + while not turtle.dropDown() do + os.sleep(1) + end end if compareItemName("minecraft:bucket") then turtle.dropUp()