change recipe for NetherLump and remove old node

This commit is contained in:
lortas 2020-12-30 13:21:28 +01:00 committed by GitHub
parent e67b475511
commit 0106b421cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 18 deletions

View File

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