From 0106b421cbad42f4147a75e8abe9edf41fb1a14f Mon Sep 17 00:00:00 2001 From: lortas Date: Wed, 30 Dec 2020 13:21:28 +0100 Subject: [PATCH] change recipe for NetherLump and remove old node --- tools.lua | 21 +++------------------ 1 file changed, 3 insertions(+), 18 deletions(-) diff --git a/tools.lua b/tools.lua index 5a60efa..637cdf0 100644 --- a/tools.lua +++ b/tools.lua @@ -69,13 +69,6 @@ minetest.register_craftitem("nether:nether_lump", { description = S("Nether Lump"), inventory_image = "nether_nether_lump.png", }) -minetest.register_node("nether:nether_compressed", { - description = S("Nether Compressed"), - tiles = {"nether_nether_compressed.png"}, - groups = {cracky = 3, level = 2}, - is_ground_content = false, - sounds = default.node_sound_stone_defaults(), -}) minetest.register_craft({ type = "cooking", @@ -83,20 +76,12 @@ minetest.register_craft({ recipe = "nether:nether_lump", cooktime = 30, }) -minetest.register_craft({ - output = "nether:nether_compressed", - recipe = { - {"nether:brick","nether:brick","nether:brick"}, - {"nether:brick","nether:brick","nether:brick"}, - {"nether:brick","nether:brick","nether:brick"}, - } -}) minetest.register_craft({ output = "nether:nether_lump", recipe = { - {"nether:nether_compressed","nether:nether_compressed","nether:nether_compressed"}, - {"nether:nether_compressed","nether:nether_compressed","nether:nether_compressed"}, - {"nether:nether_compressed","nether:nether_compressed","nether:nether_compressed"}, + {"nether:brick_compressed","nether:brick_compressed","nether:brick_compressed"}, + {"nether:brick_compressed","nether:brick_compressed","nether:brick_compressed"}, + {"nether:brick_compressed","nether:brick_compressed","nether:brick_compressed"}, } })