Update craftCrystal.lua

This commit is contained in:
erius0 2021-01-05 16:14:05 +03:00 committed by GitHub
parent c787fde08a
commit 9b4780b1a1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,11 +2,18 @@ local robot = require("robot")
local component = require("component") local component = require("component")
local sides = require("sides") local sides = require("sides")
local rs = component.redstone local rs = component.redstone
local flag = true;
while true do while true do
if rs.getInput(sides.top) > 0 then if rs.getInput(sides.top) > 0 then
flag = true
robot.suck() robot.suck()
robot.dropDown() robot.dropDown()
else else
if flag then
os.sleep(5)
else
flag = false
end
robot.suckDown() robot.suckDown()
robot.drop() robot.drop()
end end