2026-02-14 22:07:35 +01:00
|
|
|
-- https://git.l--n.de/justuswolff/cc_housebuild/raw/branch/main/src/main.lua
|
|
|
|
|
|
|
|
|
|
if not _G["turtle"] then
|
|
|
|
|
error("This program only runs on turtles!")
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local turtle = _G["turtle"]
|
|
|
|
|
|
|
|
|
|
print("fuel: "..tostring(turtle.getFuelLevel()).."/"..tostring(turtle.getFuelLimit()))
|
|
|
|
|
|