From 1753f86694553fc43bc5c64255d2f3d209162b4c Mon Sep 17 00:00:00 2001 From: TriantaTV Date: Thu, 21 Sep 2023 01:26:31 -0500 Subject: [PATCH] Fixed function call error --- build.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.lua b/build.lua index 548de84..0e8280d 100644 --- a/build.lua +++ b/build.lua @@ -2,7 +2,7 @@ args = {...} intLength = args[1] intHeight = args[2] for i=0, intHeight do - turtle.PlaceDown() + turtle.placeDown() for j=0, intLength-1 do turtle.forward() turtle.placeDown()