diff options
author | Calinou <calinou9999spam@gmail.com> | 2014-01-20 19:49:40 +0100 |
---|---|---|
committer | Calinou <calinou9999spam@gmail.com> | 2014-01-20 19:49:40 +0100 |
commit | 62f9f00fe8363322c5a5d64e84759743c84fc2bb (patch) | |
tree | b1a3e40b0aa9ceb2a10704f3bc2d1ad3cd2dc7c3 /stairsplus/microblocks.lua | |
parent | 2b01bd5cbccfd3a74076602d70ba74d792641779 (diff) |
Big update: new stair types, code looks better.
Diffstat (limited to 'stairsplus/microblocks.lua')
-rw-r--r-- | stairsplus/microblocks.lua | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/stairsplus/microblocks.lua b/stairsplus/microblocks.lua index 6cbb7d4..30a95ea 100644 --- a/stairsplus/microblocks.lua +++ b/stairsplus/microblocks.lua @@ -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 }) |