Skip to content

Commit

Permalink
Junglegrass: Prevent seeding of dirt_with_grass
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
paramat committed Mar 17, 2017
1 parent 07e1142 commit 02921ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mods/default/nodes.lua
Expand Up @@ -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",
Expand Down

0 comments on commit 02921ba

Please sign in to comment.