From b136cbf9bbce8aa54fe4f17b959c26cf518a4130 Mon Sep 17 00:00:00 2001 From: the-real-herowl Date: Sat, 2 Nov 2024 21:04:00 +0100 Subject: [PATCH] Changed bamboo cap drawtype (#4658) Reviewed-on: https://git.minetest.land/VoxeLibre/VoxeLibre/pulls/4658 Co-authored-by: the-real-herowl Co-committed-by: the-real-herowl --- mods/ITEMS/mcl_bamboo/bamboo_base.lua | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/mods/ITEMS/mcl_bamboo/bamboo_base.lua b/mods/ITEMS/mcl_bamboo/bamboo_base.lua index 9390dbc86..e1b8ba640 100644 --- a/mods/ITEMS/mcl_bamboo/bamboo_base.lua +++ b/mods/ITEMS/mcl_bamboo/bamboo_base.lua @@ -220,10 +220,12 @@ minetest.register_node(BAMBOO, bamboo_def) local bamboo_top = table.copy(bamboo_def) bamboo_top.groups = {not_in_creative_inventory = 1, handy = 1, axey = 1, choppy = 1, dig_by_piston = 1, plant = 1, non_mycelium_plant = 1, flammable = 3} bamboo_top.tiles = {"mcl_bamboo_endcap.png"} -bamboo_top.drawtype = "plantlike_rooted" --"plantlike" ---bamboo_top.paramtype2 = "meshoptions" ---bamboo_top.param2 = 2 --- bamboo_top.waving = 2 + +-- bamboo_top.drawtype = "plantlike_rooted" --"plantlike" +bamboo_top.drawtype = "plantlike" +bamboo_top.paramtype2 = "meshoptions" +bamboo_top.param2 = 2 +bamboo_top.waving = 2 bamboo_top.special_tiles = {{name = "mcl_bamboo_endcap.png"}} bamboo_top.nodebox = nil bamboo_top.selection_box = nil