Register copper lantern

This commit is contained in:
SmokeyDope 2023-02-12 05:10:50 +00:00 committed by Gitea
parent f02abde74c
commit 8992fd345c
1 changed files with 9 additions and 0 deletions

View File

@ -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",