From 8992fd345cd9da8bdb971fa673e00f3d048da13c Mon Sep 17 00:00:00 2001 From: SmokeyDope Date: Sun, 12 Feb 2023 05:10:50 +0000 Subject: [PATCH] Register copper lantern --- mcl_copper_stuff/tools.lua | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/mcl_copper_stuff/tools.lua b/mcl_copper_stuff/tools.lua index 31d1d50..c7dfbce 100644 --- a/mcl_copper_stuff/tools.lua +++ b/mcl_copper_stuff/tools.lua @@ -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 minetest.register_craft({ output = "mcl_copper_stuff:pick_copper",