You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
privateval height by setting("Height", 4, 2..10, 1, "Height of the full tunnel tube including the pavement", " blocks") { page ==Page.Structure }
52
+
privateval width by setting("Width", 6, 1..30, 1, "Width of the full tunnel tube including the pavements rims", " blocks") { page ==Page.Structure }
53
53
privateval pavement by setting("Pavement", Material.Block, "Material for the pavement") { page ==Page.Structure }
54
-
privateval rimHeight by setting("Pavement Rim Height", 1, 0..6, 1) { page ==Page.Structure&& pavement !=Material.None }
54
+
privateval rimHeight by setting("Pavement Rim Height", 1, 0..6, 1, "Height of the pavements rims where 0 is none", " blocks") { page ==Page.Structure&& pavement !=Material.None }
55
55
privateval cornerBlock by setting("Corner", Corner.None, "Include corner blocks in the highway") { page ==Page.Structure&& pavement !=Material.None }
56
56
privateval pavementMaterial by setting("Pavement Material", Blocks.OBSIDIAN, "Material to build the highway with") { page ==Page.Structure&& pavement ==Material.Block }
57
57
privateval floor by setting("Floor", Material.None, "Material for the floor") { page ==Page.Structure }
@@ -60,8 +60,8 @@ object HighwayTools : Module(
60
60
privateval wallMaterial by setting("Wall Material", Blocks.NETHERRACK, "Material to build the walls with") { page ==Page.Structure&& walls ==Material.Block }
61
61
privateval ceiling by setting("Ceiling", Material.None, "Material for the ceiling") { page ==Page.Structure }
62
62
privateval ceilingMaterial by setting("Ceiling Material", Blocks.OBSIDIAN, "Material to build the ceiling with") { page ==Page.Structure&& ceiling ==Material.Block }
63
-
privateval distance by setting("Distance", -1, -1..1000000, 1, "Distance to build the highway/tunnel (negative for infinite)") { page ==Page.Structure }
64
-
privateval sliceSize by setting("Slice Size", 3, 1..5, 1, "Number of slices to build at once") { page ==Page.Structure }
63
+
privateval distance by setting("Distance", -1, -1..1000000, 1, "Distance to build the highway/tunnel (negative for infinite)", " blocks") { page ==Page.Structure }
64
+
privateval sliceSize by setting("Slice Size", 3, 1..5, 1, "Number of slices to build at once", " blocks") { page ==Page.Structure }
0 commit comments