default:dirt_with_snow: Re-add to soil group
authorparamat <paramat@users.noreply.github.com>
Sat, 13 Jan 2018 11:46:35 +0000 (11:46 +0000)
committerSmallJoker <mk939@ymail.com>
Sun, 6 May 2018 18:44:30 +0000 (20:44 +0200)
Previously, saplings were not growing if the dirt they are on turned to
'dirt with snow' before growth.
Also for consistency with other dirt nodes.

mods/default/nodes.lua

index b02951d372e6e0130ed839dff579ff43182ad7ef..4196474bee7b16d0c7ac48e675865fbcb65b94c5 100644 (file)
@@ -440,7 +440,7 @@ minetest.register_node("default:dirt_with_snow", {
        tiles = {"default_snow.png", "default_dirt.png",
                {name = "default_dirt.png^default_snow_side.png",
                        tileable_vertical = false}},
-       groups = {crumbly = 3, spreading_dirt_type = 1, snowy = 1},
+       groups = {crumbly = 3, soil = 1, spreading_dirt_type = 1, snowy = 1},
        drop = 'default:dirt',
        sounds = default.node_sound_dirt_defaults({
                footstep = {name = "default_snow_footstep", gain = 0.15},