Skip to content

Commit c6da604

Browse files
committed
fix: fixed requires
1 parent 72a1934 commit c6da604

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

builder-lib.lua

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ local Builder_Lib = {
88

99

1010
---@class SCM
11-
local scm = require("scm")
11+
local scm = require("./scm")
1212

1313
---@class turtleController
1414
local turtleController = scm:load("turtleController")
@@ -30,7 +30,6 @@ local function placeDownItem(itemname)
3030
selectItemToPlace(itemname)
3131
if turtle.detectDown() then
3232
local _, down = turtle.inspectDown()
33-
print("Fond block to replace: ", down.name)
3433
turtleController:tryAction("digD")
3534
end
3635
local succ, txt = turtle.placeDown()

builder.lua

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
--- UI for Builder
22

3-
---@class SCM
4-
local scm = require("scm")
5-
63
---@class Builder_Lib
7-
local builder = require("/libs/builder-prog/builder-lib")
4+
local builder = require("/progs/builder-prog/builder-lib")
85

96

107
local function help()

0 commit comments

Comments
 (0)