is ground content revision

see https://github.com/pandorabox-io/pandorabox.io/issues/836

I kept the flowers as ground content to stay in sync with
MTG default flowers. (though I personally would also
mark those as non ground content, but they are passed to
mapgen as decorations...)
This commit is contained in:
Luke aka SwissalpS 2024-03-04 01:26:49 +01:00
parent 349e691afb
commit b18bef7224
1 changed files with 2 additions and 0 deletions

View File

@ -43,6 +43,7 @@ for _, clay in pairs(clay) do
description = clay[2] .. " " .. S("Baked Clay"),
tiles = {"baked_clay_" .. clay[1] ..".png"},
groups = {cracky = 3, bakedclay = 1},
is_ground_content = false,
sounds = default.node_sound_stone_defaults()
})
@ -140,6 +141,7 @@ for _, clay in pairs(clay) do
},
paramtype2 = "facedir",
groups = {cracky = 3, terracotta = 1},
is_ground_content = false,
sounds = default.node_sound_stone_defaults(),
on_place = minetest.rotate_node
})