From 01db55cee5b44f4638b27bda6dfafe85462c1642 Mon Sep 17 00:00:00 2001 From: paramat Date: Sat, 13 Jan 2018 11:46:35 +0000 Subject: [PATCH] default:dirt_with_snow: Re-add to soil group 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/default/nodes.lua b/mods/default/nodes.lua index b02951d3..4196474b 100644 --- a/mods/default/nodes.lua +++ b/mods/default/nodes.lua @@ -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},