From 8c21b81dcf32c2107f7b938215dd5109a20892f8 Mon Sep 17 00:00:00 2001 From: laireia Date: Fri, 1 Dec 2023 10:39:21 +1000 Subject: [PATCH] More information for the azalea definition Add azaleas to the 'deco_block' group and fill in some help data --- mods/ITEMS/mcl_lush_caves/nodes.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mods/ITEMS/mcl_lush_caves/nodes.lua b/mods/ITEMS/mcl_lush_caves/nodes.lua index 9e87ed097..bf9e020c3 100644 --- a/mods/ITEMS/mcl_lush_caves/nodes.lua +++ b/mods/ITEMS/mcl_lush_caves/nodes.lua @@ -326,6 +326,8 @@ minetest.register_node("mcl_lush_caves:spore_blossom", { }) local tpl_azalea = { + _tt_help = S("Needs soil and bone meal to grow"), + _doc_items_hidden = false, drawtype = "nodebox", node_box = { type = "fixed", @@ -340,6 +342,7 @@ local tpl_azalea = { plant = 1, non_mycelium_plant = 1, dig_by_piston = 1, dig_by_water = 1, flammable = 2, fire_encouragement = 15, fire_flammability = 40, + deco_block = 1, }, sounds = mcl_sounds.node_sound_dirt_defaults(), paramtype = "light",