add the flower pots to the potting_group to make bushes_classic bushes regrow berries on them

This commit is contained in:
Tim 2015-01-21 04:40:38 +01:00
parent be4ed12b6c
commit 2cd99d6462
1 changed files with 3 additions and 3 deletions

View File

@ -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(),
})