From 0d6c577303500fd4ba0d6249c8e9fc1ba4f3d7c6 Mon Sep 17 00:00:00 2001 From: Luke aka SwissalpS Date: Mon, 11 Mar 2024 16:08:11 +0100 Subject: [PATCH] bushes ground content minetest default game treats all bush parts as ground content, so we do that here too. The baskets however are player made and placed, so they aren't ground content --- bushes_classic/nodes.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bushes_classic/nodes.lua b/bushes_classic/nodes.lua index 1af4675..6f4a8f0 100644 --- a/bushes_classic/nodes.lua +++ b/bushes_classic/nodes.lua @@ -159,6 +159,7 @@ for i, bush_name in ipairs(bushes_classic.bushes) do paramtype2 = "facedir", on_use = minetest.item_eat(18), groups = { dig_immediate = 3 }, + is_ground_content = false, }) @@ -210,4 +211,5 @@ minetest.register_node(":bushes:basket_empty", { paramtype = "light", paramtype2 = "facedir", groups = { dig_immediate = 3 }, + is_ground_content = false, })