From 02921baa7a5af3f6c2892cd1a63d1383f070cc76 Mon Sep 17 00:00:00 2001 From: paramat Date: Fri, 17 Mar 2017 05:06:57 +0000 Subject: [PATCH] Junglegrass: Prevent seeding of dirt_with_grass Previously you could place junglegrass on dirt to convert that dirt to dirt_with_grass, but this is unsuitable now that rainforest has a surface of dirt_with_rainforest_litter. Remove junglegrass from the 'grass' group. --- 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 0523097c..c20a3a88 100644 --- a/mods/default/nodes.lua +++ b/mods/default/nodes.lua @@ -1170,7 +1170,7 @@ minetest.register_node("default:junglegrass", { sunlight_propagates = true, walkable = false, buildable_to = true, - groups = {snappy = 3, flora = 1, attached_node = 1, grass = 1, flammable = 1}, + groups = {snappy = 3, flora = 1, attached_node = 1, flammable = 1}, sounds = default.node_sound_leaves_defaults(), selection_box = { type = "fixed", -- 2.25.1