mirror of
https://github.com/minetest-mods/moreblocks.git
synced 2025-07-01 07:30:43 +02:00
Big update: new stair types, code looks better.
This commit is contained in:
@ -26,10 +26,6 @@ function register_micro(modname, subname, recipeitem, groups, images, descriptio
|
||||
type = "fixed",
|
||||
fixed = {-0.5, -0.5, 0, 0, 0, 0.5},
|
||||
},
|
||||
selection_box = {
|
||||
type = "fixed",
|
||||
fixed = {-0.5, -0.5, 0, 0, 0, 0.5},
|
||||
},
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
on_place = stairsplus_rotate_and_place
|
||||
})
|
||||
@ -48,10 +44,6 @@ function register_micro(modname, subname, recipeitem, groups, images, descriptio
|
||||
type = "fixed",
|
||||
fixed = {-0.5, -0.5, 0, 0, -0.4375, 0.5},
|
||||
},
|
||||
selection_box = {
|
||||
type = "fixed",
|
||||
fixed = {-0.5, -0.5, 0, 0, -0.4375, 0.5},
|
||||
},
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
on_place = stairsplus_rotate_and_place
|
||||
})
|
||||
@ -70,10 +62,6 @@ function register_micro(modname, subname, recipeitem, groups, images, descriptio
|
||||
type = "fixed",
|
||||
fixed = {-0.5, -0.5, 0, 0, -0.375, 0.5},
|
||||
},
|
||||
selection_box = {
|
||||
type = "fixed",
|
||||
fixed = {-0.5, -0.5, 0, 0, -0.375, 0.5},
|
||||
},
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
on_place = stairsplus_rotate_and_place
|
||||
})
|
||||
@ -92,10 +80,6 @@ function register_micro(modname, subname, recipeitem, groups, images, descriptio
|
||||
type = "fixed",
|
||||
fixed = {-0.5, -0.5, 0, 0, -0.25, 0.5},
|
||||
},
|
||||
selection_box = {
|
||||
type = "fixed",
|
||||
fixed = {-0.5, -0.5, 0, 0, -0.25, 0.5},
|
||||
},
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
on_place = stairsplus_rotate_and_place
|
||||
})
|
||||
@ -114,10 +98,6 @@ function register_micro(modname, subname, recipeitem, groups, images, descriptio
|
||||
type = "fixed",
|
||||
fixed = {-0.5, -0.5, 0, 0, 0.25, 0.5},
|
||||
},
|
||||
selection_box = {
|
||||
type = "fixed",
|
||||
fixed = {-0.5, -0.5, 0, 0, 0.25, 0.5},
|
||||
},
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
on_place = stairsplus_rotate_and_place
|
||||
})
|
||||
@ -136,10 +116,6 @@ function register_micro(modname, subname, recipeitem, groups, images, descriptio
|
||||
type = "fixed",
|
||||
fixed = {-0.5, -0.5, 0, 0, 0.375, 0.5},
|
||||
},
|
||||
selection_box = {
|
||||
type = "fixed",
|
||||
fixed = {-0.5, -0.5, 0, 0, 0.375, 0.5},
|
||||
},
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
on_place = stairsplus_rotate_and_place
|
||||
})
|
||||
@ -158,10 +134,6 @@ function register_micro(modname, subname, recipeitem, groups, images, descriptio
|
||||
type = "fixed",
|
||||
fixed = {-0.5, -0.5, 0, 0, 0.4375, 0.5},
|
||||
},
|
||||
selection_box = {
|
||||
type = "fixed",
|
||||
fixed = {-0.5, -0.5, 0, 0, 0.4375, 0.5},
|
||||
},
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
on_place = stairsplus_rotate_and_place
|
||||
})
|
||||
|
Reference in New Issue
Block a user