Add soil_sapling group

This commit is contained in:
Wuzzy 2017-01-12 07:07:30 +01:00
parent b513385e7b
commit de5f3d5618
4 changed files with 17 additions and 11 deletions

View file

@ -11,7 +11,7 @@ minetest.register_node("farming:soil", {
{-0.5, -0.5, -0.5, 0.5, 0.4375, 0.5},
}
},
groups = {crumbly=3, not_in_creative_inventory=1,soil=2},
groups = { crumbly=3, not_in_creative_inventory=1, soil=2, soil_sapling=1 },
sounds = default.node_sound_dirt_defaults(),
})
@ -27,7 +27,7 @@ minetest.register_node("farming:soil_wet", {
{-0.5, -0.5, -0.5, 0.5, 0.4375, 0.5},
}
},
groups = {crumbly=3, not_in_creative_inventory=1,soil=3},
groups = { crumbly=3, not_in_creative_inventory=1, soil=3, soil_sapling=1 },
sounds = default.node_sound_dirt_defaults(),
})