diff --git a/screenshot3.png b/screenshot3.png index 80db446..75b1c92 100644 Binary files a/screenshot3.png and b/screenshot3.png differ diff --git a/stairsplus/circular_saw.lua b/stairsplus/circular_saw.lua index 688973e..80e404d 100644 --- a/stairsplus/circular_saw.lua +++ b/stairsplus/circular_saw.lua @@ -14,7 +14,7 @@ local formspec_style = stairsplus.resources.formspec_style function circular_saw.build_formspec(meta, inv) local inv_location = get_location_string(inv) return ([[ - size[12,11] + size[10,11] %s label[0,0;%s] list[%s;stairsplus:input;1.7,0;1,1;] diff --git a/stairsplus/shapes/stairs.lua b/stairsplus/shapes/stairs.lua index 3d9f6f6..14d3ef1 100644 --- a/stairsplus/shapes/stairs.lua +++ b/stairsplus/shapes/stairs.lua @@ -1,18 +1,3 @@ -stairsplus.api.register_shape("stair", { - name_format = "stair_%s", - description = "@1 Stair", - shape_groups = {stair = 1, legacy = 1}, - eighths = 6, - drawtype = "nodebox", - node_box = { - type = "fixed", - fixed = { - {-0.5, -0.5, -0.5, 0.5, 0, 0.5}, - {-0.5, 0, 0, 0.5, 0.5, 0.5}, - }, - }, -}) - stairsplus.api.register_shape("stair_half", { name_format = "stair_%s_half", description = "@1 Half Stair", @@ -43,6 +28,21 @@ stairsplus.api.register_shape("stair_right_half", { }, }) +stairsplus.api.register_shape("stair", { + name_format = "stair_%s", + description = "@1 Stair", + shape_groups = {stair = 1, legacy = 1}, + eighths = 6, + drawtype = "nodebox", + node_box = { + type = "fixed", + fixed = { + {-0.5, -0.5, -0.5, 0.5, 0, 0.5}, + {-0.5, 0, 0, 0.5, 0.5, 0.5}, + }, + }, +}) + stairsplus.api.register_shape("stair_inner", { name_format = "stair_%s_inner", description = "@1 Inner Stair",