mirror of
https://codeberg.org/tenplus1/farming.git
synced 2025-07-13 05:40:28 +02:00
set is_ground_content for all (thx SwissAlpS)
This commit is contained in:
@ -99,6 +99,7 @@ minetest.register_node("farming:beanpole", {
|
||||
drop = "farming:beanpole",
|
||||
selection_box = farming.select,
|
||||
groups = {handy = 1, snappy = 3, flammable = 2, attached_node = 1},
|
||||
is_ground_content = false,
|
||||
sounds = farming.sounds.node_sound_leaves_defaults(),
|
||||
|
||||
on_place = function(itemstack, placer, pointed_thing)
|
||||
@ -190,6 +191,7 @@ local def = {
|
||||
handy = 1, snappy = 3, flammable = 3, not_in_creative_inventory = 1,
|
||||
attached_node = 1, growing = 1, plant = 1
|
||||
},
|
||||
is_ground_content = false,
|
||||
sounds = farming.sounds.node_sound_leaves_defaults()
|
||||
}
|
||||
|
||||
@ -253,6 +255,7 @@ minetest.register_node("farming:beanbush", {
|
||||
handy = 1, snappy = 3, flammable = 2, plant = 1, attached_node = 1,
|
||||
compostability = 35, not_in_creative_inventory = 1
|
||||
},
|
||||
is_ground_content = false,
|
||||
sounds = farming.sounds.node_sound_leaves_defaults()
|
||||
})
|
||||
|
||||
|
Reference in New Issue
Block a user