From 2cd99d6462d955e7af063c374d5e3be81023caeb Mon Sep 17 00:00:00 2001 From: Tim Date: Wed, 21 Jan 2015 04:40:38 +0100 Subject: [PATCH] add the flower pots to the potting_group to make bushes_classic bushes regrow berries on them --- homedecor/misc-nodes.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/homedecor/misc-nodes.lua b/homedecor/misc-nodes.lua index e2e53c0b..23813401 100644 --- a/homedecor/misc-nodes.lua +++ b/homedecor/misc-nodes.lua @@ -91,7 +91,7 @@ minetest.register_node('homedecor:flower_pot_terracotta', { paramtype = "light", paramtype2 = "facedir", walkable = true, - groups = { snappy = 3 }, + groups = { snappy = 3, potting_soil=1}, sounds = default.node_sound_leaves_defaults(), }) @@ -104,7 +104,7 @@ minetest.register_node('homedecor:flower_pot_black', { paramtype = "light", paramtype2 = "facedir", walkable = true, - groups = { snappy = 3 }, + groups = { snappy = 3, potting_soil=1 }, sounds = default.node_sound_leaves_defaults(), }) @@ -117,7 +117,7 @@ minetest.register_node('homedecor:flower_pot_green', { paramtype = "light", paramtype2 = "facedir", walkable = true, - groups = { snappy = 3 }, + groups = { snappy = 3, potting_soil=1 }, sounds = default.node_sound_leaves_defaults(), })