diff options
-rw-r--r-- | staircase.lua | 4 |
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 |