This commit is contained in:
kepler155c@gmail.com 2017-05-14 01:03:55 -04:00
parent 9a0c584cba
commit 87aed4dc01
1 changed files with 4 additions and 1 deletions

View File

@ -27,7 +27,10 @@ local function findObsidian()
local _,b = turtle.inspectDown()
if b and (b.name == 'minecraft:lava' or b.name == 'minecraft:flowing_lava') then
if turtle.selectSlot('minecraft:water_bucket') then
while not turtle.up() do
while true do
if turtle.up() then
break
end
print('stuck')
end
turtle.placeDown()