1
0
mirror of https://github.com/kepler155c/opus synced 2024-06-14 17:29:59 +00:00
This commit is contained in:
kepler155c@gmail.com 2017-05-14 01:03:55 -04:00
parent 9a0c584cba
commit 87aed4dc01

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()