summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorubq323 <ubq323@ubq323.website>2024-04-03 21:14:03 +0100
committerubq323 <ubq323@ubq323.website>2024-04-03 21:14:03 +0100
commitcde0e20479e40727dca2831d34cc4588222c9079 (patch)
treef5d8a2036452479a9c7ab1b8728fe2cef06c41f2
parenta33fef72df2bcf34546482f1809edcceb88b4345 (diff)
launch staircase
-rw-r--r--staircase.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/staircase.lua b/staircase.lua
index 2b44e4a..15e7300 100644
--- a/staircase.lua
+++ b/staircase.lua
@@ -2,8 +2,8 @@ local p = peripheral.find"3d_printer"
for i = 0,5 do
print(i)
p.reset()
- p.setLabel("world's greatest staircase (thin test) #"..i)
- p.addShape(i, 0, 0, i+1, 16, 4, "minecraft:block/chiseled_quartz_block")
+ p.setLabel("world's greatest staircase (thin test 2) #"..i)
+ p.addShape(i, 0, 12, i+1, 16, 16, "minecraft:block/chiseled_quartz_block")
p.commit(1)
os.pullEvent("3d_printer_complete")
end