-- =================================================================== local neednode -- =================================================================== neednode = "nature:blossom" -- if ocutil.node_missing (neednode) then minetest.register_node (":" .. neednode, { description = "Blossom", drawtype = "allfaces_optional", tiles = { "default_leaves.png^nature_blossom.png" } , paramtype = "light", groups = { snappy=3, leafdecay=3, flammable=2 } , sounds = default.node_sound_leaves_defaults(), drop = "nature:blossom" , }) end -- =================================================================== -- End of file.