aboutsummaryrefslogtreecommitdiff
path: root/stairsplus/slabs.lua
diff options
context:
space:
mode:
authorCalinou <calinou9999spam@gmail.com>2013-10-27 19:24:49 +0100
committerCalinou <calinou9999spam@gmail.com>2013-10-27 19:24:49 +0100
commite60644c7e01100a775283ff63f3db0d7471f27fa (patch)
tree9dcd7940e1e4d1e018d09fd39655c2fe54ea5d39 /stairsplus/slabs.lua
parent1333faa48b4df017e862441e65d2f3661c0e55e8 (diff)
downloadmoreblocks-e60644c7e01100a775283ff63f3db0d7471f27fa.tar.gz
moreblocks-e60644c7e01100a775283ff63f3db0d7471f27fa.tar.bz2
moreblocks-e60644c7e01100a775283ff63f3db0d7471f27fa.zip
Fix drops
Diffstat (limited to 'stairsplus/slabs.lua')
-rw-r--r--stairsplus/slabs.lua20
1 files changed, 10 insertions, 10 deletions
diff --git a/stairsplus/slabs.lua b/stairsplus/slabs.lua
index d9d72b4..a7ebe43 100644
--- a/stairsplus/slabs.lua
+++ b/stairsplus/slabs.lua
@@ -115,23 +115,23 @@ function register_slab(modname, subname, recipeitem, groups, images, description
end
})
- minetest.register_node(":"..modname .. ":slab_" .. subname .. "_2", {
+ minetest.register_node(":"..modname .. ":slab_" .. subname .. "_1", {
description = S("%s Slab"):format(S(description)),
drawtype = "nodebox",
tiles = images,
light_source = light,
- drop = modname .. ":slab_" .. drop .. "_quarter",
+ drop = modname .. ":slab_" .. drop .. "_1",
paramtype = "light",
paramtype2 = "facedir",
sunlight_propagates = true,
groups = groups,
node_box = {
type = "fixed",
- fixed = {-0.5, -0.5, -0.5, 0.5, -0.375, 0.5},
+ fixed = {-0.5, -0.5, -0.5, 0.5, -0.4375, 0.5},
},
selection_box = {
type = "fixed",
- fixed = {-0.5, -0.5, -0.5, 0.5, -0.375, 0.5},
+ fixed = {-0.5, -0.5, -0.5, 0.5, -0.4375, 0.5},
},
sounds = default.node_sound_stone_defaults(),
on_place = function(itemstack, placer, pointed_thing)
@@ -141,23 +141,23 @@ function register_slab(modname, subname, recipeitem, groups, images, description
end
})
- minetest.register_node(":"..modname .. ":slab_" .. subname .. "_1", {
+ minetest.register_node(":"..modname .. ":slab_" .. subname .. "_2", {
description = S("%s Slab"):format(S(description)),
drawtype = "nodebox",
tiles = images,
light_source = light,
- drop = modname .. ":slab_" .. drop .. "_quarter",
+ drop = modname .. ":slab_" .. drop .. "_2",
paramtype = "light",
paramtype2 = "facedir",
sunlight_propagates = true,
groups = groups,
node_box = {
type = "fixed",
- fixed = {-0.5, -0.5, -0.5, 0.5, -0.4375, 0.5},
+ fixed = {-0.5, -0.5, -0.5, 0.5, -0.375, 0.5},
},
selection_box = {
type = "fixed",
- fixed = {-0.5, -0.5, -0.5, 0.5, -0.4375, 0.5},
+ fixed = {-0.5, -0.5, -0.5, 0.5, -0.375, 0.5},
},
sounds = default.node_sound_stone_defaults(),
on_place = function(itemstack, placer, pointed_thing)
@@ -172,7 +172,7 @@ function register_slab(modname, subname, recipeitem, groups, images, description
drawtype = "nodebox",
tiles = images,
light_source = light,
- drop = modname .. ":slab_" .. drop .. "_quarter",
+ drop = modname .. ":slab_" .. drop .. "_14",
paramtype = "light",
paramtype2 = "facedir",
sunlight_propagates = true,
@@ -198,7 +198,7 @@ function register_slab(modname, subname, recipeitem, groups, images, description
drawtype = "nodebox",
tiles = images,
light_source = light,
- drop = modname .. ":slab_" .. drop .. "_quarter",
+ drop = modname .. ":slab_" .. drop .. "_15",
paramtype = "light",
paramtype2 = "facedir",
sunlight_propagates = true,