set is_ground_content for all (thx SwissAlpS)

This commit is contained in:
tenplus1
2024-02-29 17:06:28 +00:00
parent 1043da0b52
commit d99f96b224
44 changed files with 80 additions and 2 deletions

View File

@ -78,6 +78,7 @@ if minetest.registered_nodes["default:dry_dirt"] then
},
drop = "default:dry_dirt",
groups = {crumbly = 3, not_in_creative_inventory = 1, soil = 2, field = 1},
is_ground_content = false,
sounds = default.node_sound_dirt_defaults(),
soil = {
base = "default:dry_dirt",
@ -94,6 +95,7 @@ if minetest.registered_nodes["default:dry_dirt"] then
},
drop = "default:dry_dirt",
groups = {crumbly = 3, not_in_creative_inventory = 1, soil = 3, field = 1},
is_ground_content = false,
sounds = default.node_sound_dirt_defaults(),
soil = {
base = "default:dry_dirt",
@ -111,6 +113,7 @@ minetest.register_node("farming:soil", {
tiles = {"default_dirt.png^farming_soil.png", "default_dirt.png"},
drop = "default:dirt",
groups = {crumbly = 3, not_in_creative_inventory = 1, soil = 2, field = 1},
is_ground_content = false,
sounds = default.node_sound_dirt_defaults(),
soil = {
base = "default:dirt",
@ -128,6 +131,7 @@ minetest.register_node("farming:soil_wet", {
},
drop = "default:dirt",
groups = {crumbly = 3, not_in_creative_inventory = 1, soil = 3, field = 1},
is_ground_content = false,
sounds = default.node_sound_dirt_defaults(),
soil = {
base = "default:dirt",