Skip to content

Commit 8216d00

Browse files
committed
Units for HWT
1 parent c39f2c2 commit 8216d00

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

common/src/main/kotlin/com/lambda/module/modules/player/HighwayTools.kt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ object HighwayTools : Module(
4848
) {
4949
private val page by setting("Page", Page.Structure)
5050

51-
private val height by setting("Height", 4, 2..10, 1) { page == Page.Structure }
52-
private val width by setting("Width", 6, 1..30, 1) { page == Page.Structure }
51+
private val height by setting("Height", 4, 2..10, 1, "Height of the full tunnel tube including the pavement", " blocks") { page == Page.Structure }
52+
private val width by setting("Width", 6, 1..30, 1, "Width of the full tunnel tube including the pavements rims", " blocks") { page == Page.Structure }
5353
private val pavement by setting("Pavement", Material.Block, "Material for the pavement") { page == Page.Structure }
54-
private val rimHeight by setting("Pavement Rim Height", 1, 0..6, 1) { page == Page.Structure && pavement != Material.None }
54+
private val 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 }
5555
private val cornerBlock by setting("Corner", Corner.None, "Include corner blocks in the highway") { page == Page.Structure && pavement != Material.None }
5656
private val pavementMaterial by setting("Pavement Material", Blocks.OBSIDIAN, "Material to build the highway with") { page == Page.Structure && pavement == Material.Block }
5757
private val floor by setting("Floor", Material.None, "Material for the floor") { page == Page.Structure }
@@ -60,8 +60,8 @@ object HighwayTools : Module(
6060
private val wallMaterial by setting("Wall Material", Blocks.NETHERRACK, "Material to build the walls with") { page == Page.Structure && walls == Material.Block }
6161
private val ceiling by setting("Ceiling", Material.None, "Material for the ceiling") { page == Page.Structure }
6262
private val ceilingMaterial by setting("Ceiling Material", Blocks.OBSIDIAN, "Material to build the ceiling with") { page == Page.Structure && ceiling == Material.Block }
63-
private val distance by setting("Distance", -1, -1..1000000, 1, "Distance to build the highway/tunnel (negative for infinite)") { page == Page.Structure }
64-
private val sliceSize by setting("Slice Size", 3, 1..5, 1, "Number of slices to build at once") { page == Page.Structure }
63+
private val distance by setting("Distance", -1, -1..1000000, 1, "Distance to build the highway/tunnel (negative for infinite)", " blocks") { page == Page.Structure }
64+
private val sliceSize by setting("Slice Size", 3, 1..5, 1, "Number of slices to build at once", " blocks") { page == Page.Structure }
6565

6666
private val build = BuildSettings(this) { page == Page.Build }
6767
private val rotation = RotationSettings(this) { page == Page.Rotation }

0 commit comments

Comments
 (0)