master
runs 2020-05-11 22:10:43 +02:00
parent 0983c2b14b
commit 6a868e526e
2 changed files with 13 additions and 4 deletions

View File

@ -237,7 +237,7 @@ for _, i in pairs(variant_list) do
sunlight_propagates = true,
walkable = false,
is_ground_content = false,
groups = {choppy = 3, explody = 1},
groups = {choppy = 3, explody = 1, firework = 1},
on_rightclick = function(pos, node, clicker, itemstack, pointed_thing)
local wielded_item = clicker:get_wielded_item()
@ -415,6 +415,15 @@ if minetest.get_modpath("mesecons") ~= nil then
end
end
end,
}}
})
}}
})
minetest.register_craft({
output = "fireworkz:launcher",
type = "shaped",
recipe = {
{"", "tnt:gunpowder", ""},
{"", "default:mese", ""},
{"", "default:steelblock", ""}
},
})
end

View File

@ -1,3 +1,3 @@
name = fireworkz
depends = default
depends = default, tnt
optional_depends = mesecons