mirror of
https://github.com/minetest-mods/moreblocks.git
synced 2025-07-03 16:40:42 +02:00
circular saw works now; still need to do compatabilit and testing
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
stairsplus.api.register_shape("panel_1", {
|
||||
name_format = "panel_%s_1",
|
||||
description = "@1 1/16 Panel",
|
||||
shape_groups = {panel = 1},
|
||||
shape_groups = {panel = 1, legacy = 1},
|
||||
eighths = 1,
|
||||
drawtype = "nodebox",
|
||||
node_box = {
|
||||
@ -13,7 +13,7 @@ stairsplus.api.register_shape("panel_1", {
|
||||
stairsplus.api.register_shape("panel_2", {
|
||||
name_format = "panel_%s_2",
|
||||
description = "@1 1/8 Panel",
|
||||
shape_groups = {panel = 1},
|
||||
shape_groups = {panel = 1, legacy = 1},
|
||||
eighths = 1,
|
||||
drawtype = "nodebox",
|
||||
node_box = {
|
||||
@ -25,7 +25,7 @@ stairsplus.api.register_shape("panel_2", {
|
||||
stairsplus.api.register_shape("panel_4", {
|
||||
name_format = "panel_%s_4",
|
||||
description = "@1 1/4 Panel",
|
||||
shape_groups = {panel = 1},
|
||||
shape_groups = {panel = 1, legacy = 1},
|
||||
eighths = 1,
|
||||
drawtype = "nodebox",
|
||||
node_box = {
|
||||
@ -38,7 +38,7 @@ stairsplus.api.register_shape("panel_8", {
|
||||
name_format = "panel_%s_8",
|
||||
aliases = {"panel_%s", "panel_bottom_%s"},
|
||||
description = "@1 1/2 Panel",
|
||||
shape_groups = {panel = 1, common = 1},
|
||||
shape_groups = {panel = 1, common = 1, legacy = 1},
|
||||
eighths = 2,
|
||||
drawtype = "nodebox",
|
||||
node_box = {
|
||||
@ -50,7 +50,7 @@ stairsplus.api.register_shape("panel_8", {
|
||||
stairsplus.api.register_shape("panel_12", {
|
||||
name_format = "panel_%s_12",
|
||||
description = "@1 3/4 Panel",
|
||||
shape_groups = {panel = 1},
|
||||
shape_groups = {panel = 1, legacy = 1},
|
||||
eighths = 3,
|
||||
drawtype = "nodebox",
|
||||
node_box = {
|
||||
@ -62,7 +62,7 @@ stairsplus.api.register_shape("panel_12", {
|
||||
stairsplus.api.register_shape("panel_14", {
|
||||
name_format = "panel_%s_14",
|
||||
description = "@1 7/8 Panel",
|
||||
shape_groups = {panel = 1},
|
||||
shape_groups = {panel = 1, legacy = 1},
|
||||
eighths = 4,
|
||||
drawtype = "nodebox",
|
||||
node_box = {
|
||||
@ -74,7 +74,7 @@ stairsplus.api.register_shape("panel_14", {
|
||||
stairsplus.api.register_shape("panel_15", {
|
||||
name_format = "panel_%s_15",
|
||||
description = "@1 15/16 Panel",
|
||||
shape_groups = {panel = 1},
|
||||
shape_groups = {panel = 1, legacy = 1},
|
||||
eighths = 4,
|
||||
drawtype = "nodebox",
|
||||
node_box = {
|
||||
|
Reference in New Issue
Block a user