diff --git a/3d.lua b/3d.lua index 4e485e8..b6fc1ba 100644 --- a/3d.lua +++ b/3d.lua @@ -15,7 +15,6 @@ minetest.register_node("real_torch:torch", { sunlight_propagates = true, walkable = false, liquids_pointable = false, - light_source = 13, groups = {choppy=2, dig_immediate=3, flammable=1, attached_node=1}, drop = "real_torch:torch", selection_box = { @@ -64,7 +63,6 @@ minetest.register_node("real_torch:torch_wall", { paramtype2 = "wallmounted", sunlight_propagates = true, walkable = false, - light_source = 13, groups = {choppy=2, dig_immediate=3, flammable=1, not_in_creative_inventory=1, attached_node=1}, drop = "real_torch:torch", selection_box = { @@ -87,7 +85,6 @@ minetest.register_node("real_torch:torch_ceiling", { paramtype2 = "wallmounted", sunlight_propagates = true, walkable = false, - light_source = 13, groups = {choppy=2, dig_immediate=3, flammable=1, not_in_creative_inventory=1, attached_node=1}, drop = "real_torch:torch", selection_box = { diff --git a/init.lua b/init.lua index c2dee1f..580362e 100644 --- a/init.lua +++ b/init.lua @@ -68,7 +68,7 @@ minetest.register_craft({ -- 2x coal lumps = 8x coal powder minetest.register_craft({ type = "shapeless", - output = "real_torch:coal_powder 8", + output = "real_torch:coal_powder 10", recipe = {"default:coal_lump", "default:coal_lump"}, }) @@ -87,7 +87,7 @@ minetest.register_craft({ }) -- Make sure Ethereal mod isn't running as this Abm already exists there -if not minetest.get_modpath("xanadu") then +if not minetest.get_modpath("ethereal") then -- if torch touches water then drop as unlit torch minetest.register_abm({ diff --git a/readme.md b/readme.md index 9fa3507..3b44f7c 100644 --- a/readme.md +++ b/readme.md @@ -15,3 +15,5 @@ Changelog: - 0.2 - Punching unlit torch with coal powder relights torch - 0.3 - Torches are 2D and override any that are 3D - 0.4 - Changed my mind, now detects old 2D or new 3D torches and works accordingly +- 0.5 - 2x coal lumps give 10x coal dust, also fixed check for ethereal mod +