From 628abc8c6689082299c5663dc7eac5f941c381c3 Mon Sep 17 00:00:00 2001 From: Luke aka SwissalpS Date: Mon, 11 Mar 2024 18:04:12 +0100 Subject: [PATCH] user 'placed' nodes -> not ground content --- dryplants/init.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dryplants/init.lua b/dryplants/init.lua index 2aec66c..46b3607 100644 --- a/dryplants/init.lua +++ b/dryplants/init.lua @@ -119,6 +119,7 @@ minetest.register_node("dryplants:grass", { fixed = {-0.5 , -0.5 , -0.5 , 0.5 , -0.4375, 0.5 }, }, groups = {snappy=3, flammable=2}, + is_ground_content = false, sounds = default.node_sound_leaves_defaults(), }) @@ -151,6 +152,7 @@ minetest.register_node("dryplants:hay", { fixed = {-0.5 , -0.5 , -0.5 , 0.5 , -0.4375, 0.5 }, }, groups = {snappy=3, flammable=2}, + is_ground_content = false, sounds = default.node_sound_leaves_defaults(), })