mirror of
https://github.com/mt-mods/plantlife_modpack.git
synced 2025-07-15 22:30:43 +02:00
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
This commit is contained in:
@ -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,
|
||||
})
|
||||
|
Reference in New Issue
Block a user