Bugfix missing tundra surface

This commit is contained in:
paramat 2014-03-29 06:32:07 +00:00
parent 72c1fab95d
commit 35e3ac6b47
1 changed files with 3 additions and 3 deletions

View File

@ -3,9 +3,7 @@
-- Depends default -- Depends default
-- License: code WTFPL -- License: code WTFPL
-- lower sea level to 160 above TERCEN -- bugfix missing surface node in tundra
-- removed soil table
-- vertical perlinmap overgeneration combined with 'get node' scanning
-- TODO -- TODO
-- fog -- fog
-- singlenode y = 0 realm option, on spawnplayer teleport to surface -- singlenode y = 0 realm option, on spawnplayer teleport to surface
@ -575,6 +573,8 @@ minetest.register_on_generated(function(minp, maxp, seed)
data[viu] = c_dirtsnow data[viu] = c_dirtsnow
elseif math.random(121) == 2 then elseif math.random(121) == 2 then
data[viu] = c_ice data[viu] = c_ice
else
data[viu] = c_wsdrygrass
end end
elseif under[si] == 2 then elseif under[si] == 2 then
data[viu] = c_dirtsnow data[viu] = c_dirtsnow