diff options
author | ubq323 <ubq323@ubq323.website> | 2024-04-03 21:30:37 +0100 |
---|---|---|
committer | ubq323 <ubq323@ubq323.website> | 2024-04-03 21:30:37 +0100 |
commit | 563153d65f177605a836d1283aac14aa88435c54 (patch) | |
tree | fd8a755b77d42938c4feda6ec821bdd4f9bc7c06 | |
parent | cde0e20479e40727dca2831d34cc4588222c9079 (diff) |
launch staircase
-rw-r--r-- | staircase.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/staircase.lua b/staircase.lua index 15e7300..406ffba 100644 --- a/staircase.lua +++ b/staircase.lua @@ -1,8 +1,8 @@ local p = peripheral.find"3d_printer" -for i = 0,5 do +for i = 0,15 do print(i) p.reset() - p.setLabel("world's greatest staircase (thin test 2) #"..i) + p.setLabel("world's greatest staircase (4-thick) #"..i) p.addShape(i, 0, 12, i+1, 16, 16, "minecraft:block/chiseled_quartz_block") p.commit(1) os.pullEvent("3d_printer_complete") |