Skip to content
Snippets Groups Projects
Commit d015f0e2 authored by PilzAdam's avatar PilzAdam
Browse files

Add the soil group

parent ea6d504b
Branches
Tags
No related merge requests found
......@@ -92,7 +92,7 @@ minetest.register_node("default:dirt_with_grass", {
description = "Dirt with Grass",
tiles = {"default_grass.png", "default_dirt.png", "default_dirt.png^default_grass_side.png"},
is_ground_content = true,
groups = {crumbly=3},
groups = {crumbly=3,soil=1},
drop = 'default:dirt',
sounds = default.node_sound_dirt_defaults({
footstep = {name="default_grass_footstep", gain=0.4},
......@@ -103,7 +103,7 @@ minetest.register_node("default:dirt_with_grass_footsteps", {
description = "Dirt with Grass and Footsteps",
tiles = {"default_grass_footsteps.png", "default_dirt.png", "default_dirt.png^default_grass_side.png"},
is_ground_content = true,
groups = {crumbly=3, not_in_creative_inventory=1},
groups = {crumbly=3,soil=1,not_in_creative_inventory=1},
drop = 'default:dirt',
sounds = default.node_sound_dirt_defaults({
footstep = {name="default_grass_footstep", gain=0.4},
......@@ -126,7 +126,7 @@ minetest.register_node("default:dirt", {
description = "Dirt",
tiles = {"default_dirt.png"},
is_ground_content = true,
groups = {crumbly=3},
groups = {crumbly=3,soil=1},
sounds = default.node_sound_dirt_defaults(),
})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment