Revert "generate snow only into air"

reason: testing it is not necessary
This reverts commit 4a9fbc8202.
This commit is contained in:
HybridDog 2015-06-17 18:20:03 +02:00
parent 4a9fbc8202
commit 60f3ac4dea
1 changed files with 3 additions and 15 deletions

View File

@ -355,21 +355,9 @@ minetest.register_on_generated(function(minp, maxp, seed)
local param2s
if num ~= 1 then
local unwanteds,u = {},1
for n,i in pairs(snow_tab) do
local p = area:index(i[3], i[1]+1, i[2])
if data[p] == c.air then
-- set snow
data[p] = c.snow
else
unwanteds[u] = n
u = u+1
end
end
if u ~= 1 then
for _,n in pairs(unwanteds) do
snow_tab[n] = nil
end
for _,i in pairs(snow_tab) do
-- set snow
data[area:index(i[3], i[1]+1, i[2])] = c.snow
end
local wsz, wsx
for _,i in pairs(snow_tab) do