Register copper lantern
This commit is contained in:
parent
f02abde74c
commit
8992fd345c
|
@ -228,6 +228,15 @@ minetest.register_tool("mcl_copper_stuff:shears_copper", {
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
-- Copper Lantern
|
||||||
|
mcl_lanterns.register_lantern("mcl_copper_stuff:copper_lantern", {
|
||||||
|
description = S("Copper Lantern"),
|
||||||
|
longdesc = S("Copper Lanterns are light sources which can be placed on the top or the bottom of most blocks."),
|
||||||
|
texture = "mcl_copper_stuff_copper_lantern.png",
|
||||||
|
texture_inv = "mcl_copper_stuff_copper_lantern_inv.png",
|
||||||
|
light_level = 10,
|
||||||
|
})
|
||||||
|
|
||||||
-- Registering crafts
|
-- Registering crafts
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "mcl_copper_stuff:pick_copper",
|
output = "mcl_copper_stuff:pick_copper",
|
||||||
|
|
Loading…
Reference in New Issue