Fix legacy mapgen_v6 floating apple bug.

This commit is contained in:
Splizard 2013-09-03 23:39:00 +00:00
parent 212e7d000e
commit bc276b44cf
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ if snow.legacy then
pr = PseudoRandom(seed+68)
if alpine then
local trees = env:find_nodes_in_area(minp, maxp, {"default:leaves","default:tree"})
local trees = env:find_nodes_in_area(minp, maxp, {"default:leaves","default:tree", "default:apple"})
for i,v in pairs(trees) do
env:remove_node(v)
end