@@ -92,7 +92,7 @@ minetest.register_node("default:dirt_with_grass", {
92
92
description = " Dirt with Grass" ,
93
93
tiles = {" default_grass.png" , " default_dirt.png" , " default_dirt.png^default_grass_side.png" },
94
94
is_ground_content = true ,
95
- groups = {crumbly = 3 },
95
+ groups = {crumbly = 3 , soil = 1 },
96
96
drop = ' default:dirt' ,
97
97
sounds = default .node_sound_dirt_defaults ({
98
98
footstep = {name = " default_grass_footstep" , gain = 0.4 },
@@ -103,7 +103,7 @@ minetest.register_node("default:dirt_with_grass_footsteps", {
103
103
description = " Dirt with Grass and Footsteps" ,
104
104
tiles = {" default_grass_footsteps.png" , " default_dirt.png" , " default_dirt.png^default_grass_side.png" },
105
105
is_ground_content = true ,
106
- groups = {crumbly = 3 , not_in_creative_inventory = 1 },
106
+ groups = {crumbly = 3 ,soil = 1 , not_in_creative_inventory = 1 },
107
107
drop = ' default:dirt' ,
108
108
sounds = default .node_sound_dirt_defaults ({
109
109
footstep = {name = " default_grass_footstep" , gain = 0.4 },
@@ -126,7 +126,7 @@ minetest.register_node("default:dirt", {
126
126
description = " Dirt" ,
127
127
tiles = {" default_dirt.png" },
128
128
is_ground_content = true ,
129
- groups = {crumbly = 3 },
129
+ groups = {crumbly = 3 , soil = 1 },
130
130
sounds = default .node_sound_dirt_defaults (),
131
131
})
132
132
0 commit comments