mirror of
https://github.com/minetest-mods/moreblocks.git
synced 2024-12-26 10:40:22 +01:00
Fix drops
This commit is contained in:
parent
1333faa48b
commit
e60644c7e0
@ -43,7 +43,7 @@ function register_micro(modname, subname, recipeitem, groups, images, descriptio
|
||||
drawtype = "nodebox",
|
||||
tiles = images,
|
||||
light_source = light,
|
||||
drop = modname .. ":micro_" .. drop,
|
||||
drop = modname .. ":micro_" .. drop .. "_1",
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
sunlight_propagates = true,
|
||||
@ -69,7 +69,7 @@ function register_micro(modname, subname, recipeitem, groups, images, descriptio
|
||||
drawtype = "nodebox",
|
||||
tiles = images,
|
||||
light_source = light,
|
||||
drop = modname .. ":micro_" .. drop,
|
||||
drop = modname .. ":micro_" .. drop .. "_2",
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
sunlight_propagates = true,
|
||||
@ -95,7 +95,7 @@ function register_micro(modname, subname, recipeitem, groups, images, descriptio
|
||||
drawtype = "nodebox",
|
||||
tiles = images,
|
||||
light_source = light,
|
||||
drop = modname .. ":micro_" .. drop,
|
||||
drop = modname .. ":micro_" .. drop .. "_4",
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
sunlight_propagates = true,
|
||||
@ -121,7 +121,7 @@ function register_micro(modname, subname, recipeitem, groups, images, descriptio
|
||||
drawtype = "nodebox",
|
||||
tiles = images,
|
||||
light_source = light,
|
||||
drop = modname .. ":micro_" .. drop,
|
||||
drop = modname .. ":micro_" .. drop .. "_12",
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
sunlight_propagates = true,
|
||||
@ -147,7 +147,7 @@ function register_micro(modname, subname, recipeitem, groups, images, descriptio
|
||||
drawtype = "nodebox",
|
||||
tiles = images,
|
||||
light_source = light,
|
||||
drop = modname .. ":micro_" .. drop,
|
||||
drop = modname .. ":micro_" .. drop .. "_14",
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
sunlight_propagates = true,
|
||||
@ -173,7 +173,7 @@ function register_micro(modname, subname, recipeitem, groups, images, descriptio
|
||||
drawtype = "nodebox",
|
||||
tiles = images,
|
||||
light_source = light,
|
||||
drop = modname .. ":micro_" .. drop,
|
||||
drop = modname .. ":micro_" .. drop .. "_15",
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
sunlight_propagates = true,
|
||||
|
@ -42,7 +42,7 @@ function register_panel(modname, subname, recipeitem, groups, images, descriptio
|
||||
drawtype = "nodebox",
|
||||
tiles = images,
|
||||
light_source = light,
|
||||
drop = modname .. ":panel_" .. drop,
|
||||
drop = modname .. ":panel_" .. drop .. "_1",
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
sunlight_propagates = true,
|
||||
@ -67,7 +67,7 @@ function register_panel(modname, subname, recipeitem, groups, images, descriptio
|
||||
drawtype = "nodebox",
|
||||
tiles = images,
|
||||
light_source = light,
|
||||
drop = modname .. ":panel_" .. drop,
|
||||
drop = modname .. ":panel_" .. drop .. "_2",
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
sunlight_propagates = true,
|
||||
@ -92,7 +92,7 @@ function register_panel(modname, subname, recipeitem, groups, images, descriptio
|
||||
drawtype = "nodebox",
|
||||
tiles = images,
|
||||
light_source = light,
|
||||
drop = modname .. ":panel_" .. drop,
|
||||
drop = modname .. ":panel_" .. drop .. "_4",
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
sunlight_propagates = true,
|
||||
@ -117,7 +117,7 @@ function register_panel(modname, subname, recipeitem, groups, images, descriptio
|
||||
drawtype = "nodebox",
|
||||
tiles = images,
|
||||
light_source = light,
|
||||
drop = modname .. ":panel_" .. drop,
|
||||
drop = modname .. ":panel_" .. drop .. "_12",
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
sunlight_propagates = true,
|
||||
@ -142,7 +142,7 @@ function register_panel(modname, subname, recipeitem, groups, images, descriptio
|
||||
drawtype = "nodebox",
|
||||
tiles = images,
|
||||
light_source = light,
|
||||
drop = modname .. ":panel_" .. drop,
|
||||
drop = modname .. ":panel_" .. drop .. "_14",
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
sunlight_propagates = true,
|
||||
@ -167,7 +167,7 @@ function register_panel(modname, subname, recipeitem, groups, images, descriptio
|
||||
drawtype = "nodebox",
|
||||
tiles = images,
|
||||
light_source = light,
|
||||
drop = modname .. ":panel_" .. drop,
|
||||
drop = modname .. ":panel_" .. drop .. "_15",
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
sunlight_propagates = true,
|
||||
|
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user