Remove 'wood' group from goldwood

master
Wuzzy 2022-04-25 18:20:38 +02:00
parent a8186900a6
commit a7736aa16d
1 changed files with 2 additions and 7 deletions

View File

@ -48,7 +48,8 @@ minetest.register_node("mtg_plus:goldwood", {
_doc_items_longdesc = S("Goldwood is a precious artificial kind of wood made by enriching wood with gold. Goldwood is fireproof and notable for its bright yellowy appearance."),
tiles = {"mtg_plus_goldwood.png"},
is_ground_content = false,
groups = {choppy = 2, wood = 1},
-- Intentionally not part of the 'wood' group, so it can be used for crafting wood items or as fuel
groups = {choppy = 2},
sounds = default.node_sound_wood_defaults(),
})
@ -57,9 +58,3 @@ minetest.register_craft({
type = "shapeless",
recipe = { "group:wood", "default:gold_ingot" },
})
-- Prevent goldwood from being used as furnace fuel
minetest.clear_craft({
type = "fuel",
recipe = "mtg_plus:goldwood",
})