Skip to content

Commit 02921ba

Browse files
committedMar 17, 2017
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.
1 parent 07e1142 commit 02921ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎mods/default/nodes.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -1170,7 +1170,7 @@ minetest.register_node("default:junglegrass", {
11701170
sunlight_propagates = true,
11711171
walkable = false,
11721172
buildable_to = true,
1173-
groups = {snappy = 3, flora = 1, attached_node = 1, grass = 1, flammable = 1},
1173+
groups = {snappy = 3, flora = 1, attached_node = 1, flammable = 1},
11741174
sounds = default.node_sound_leaves_defaults(),
11751175
selection_box = {
11761176
type = "fixed",

0 commit comments

Comments
 (0)
Please sign in to comment.