Register group for dry flora

This represents plant matter that may be
"dead" more or less and could be used for
thatch or adding plant fibers to things.
This commit is contained in:
Aaron Suen 2021-09-06 10:17:39 -04:00
parent e535e126c1
commit b42a01a4f9
3 changed files with 5 additions and 2 deletions

View File

@ -102,7 +102,8 @@ for shapeid = 1, #shapes do
snappy = 1, snappy = 1,
flower_wilted = 1, flower_wilted = 1,
flammable = 1, flammable = 1,
attached_node = 1 attached_node = 1,
flora_dry = 1
}, },
sounds = nodecore.sounds("nc_terrain_swishy"), sounds = nodecore.sounds("nc_terrain_swishy"),
selection_box = { selection_box = {

View File

@ -46,7 +46,8 @@ minetest.register_node(modname .. ":rush_dry", {
groups = { groups = {
snappy = 1, snappy = 1,
flammable = 2, flammable = 2,
attached_node = 1 attached_node = 1,
flora_dry = 1
}, },
sounds = nodecore.sounds("nc_terrain_swishy"), sounds = nodecore.sounds("nc_terrain_swishy"),
selection_box = nodecore.fixedbox({-3/8, -1/2, -3/8, 3/8, 1/4, 3/8}) selection_box = nodecore.fixedbox({-3/8, -1/2, -3/8, 3/8, 1/4, 3/8})

View File

@ -43,6 +43,7 @@ for i = 1, 5 do
snappy = 1, snappy = 1,
flora = 1, flora = 1,
flora_sedges = 1, flora_sedges = 1,
flora_dry = 1,
flammable = 3, flammable = 3,
attached_node = 1 attached_node = 1
}, },