No longer generate mushrooms next to jungle trees

This commit is contained in:
Wuzzy 2017-09-02 19:46:56 +02:00
parent 8448c72ba7
commit 4cfb278187
2 changed files with 2 additions and 2 deletions

View File

@ -1837,7 +1837,7 @@ local function register_decorations()
y_min = 1,
y_max = mcl_vars.mg_overworld_max,
decoration = mushrooms[m],
spawn_by = { "mcl_core:tree", "mcl_core:sprucetree", "mcl_core:darktree", "mcl_core:birchtree", "mcl_core:jungletree", },
spawn_by = { "mcl_core:tree", "mcl_core:sprucetree", "mcl_core:darktree", "mcl_core:birchtree" },
num_spawn_by = 1,
})
end

View File

@ -837,7 +837,7 @@ local function register_mgv6_decorations()
y_min = 1,
y_max = mcl_vars.mg_overworld_max,
decoration = mushrooms[m],
spawn_by = { "mcl_core:tree", "mcl_core:sprucetree", "mcl_core:darktree", "mcl_core:birchtree", "mcl_core:jungletree", },
spawn_by = { "mcl_core:tree", "mcl_core:sprucetree", "mcl_core:darktree", "mcl_core:birchtree", },
num_spawn_by = 1,
})
end