Fix undervater being of filler material. Fix stone layer under oceans.

This commit is contained in:
Tomáš Brada 2015-04-23 15:26:21 +02:00
parent 891a10d681
commit 558bfcc50d
2 changed files with 2 additions and 2 deletions

View File

@ -60,7 +60,7 @@ rocks.register_igneous_stratus=reg
minetest.register_ore({ minetest.register_ore({
ore="rocks:granite", wherein="default:stone", ore="rocks:granite", wherein="default:stone",
ore_type="scatter", clust_scarcity=3^3, clust_num_ores=6^3, clust_size=6, ore_type="scatter", clust_scarcity=3^3, clust_num_ores=6^3, clust_size=6,
height_min=-31000, height_max=-49, height_min=-31000, height_max=-31,
}) })
-- continental (granite): diorite and gabbro -- continental (granite): diorite and gabbro

View File

@ -117,7 +117,7 @@ do
-- to fix weirid sand layers underground -- to fix weirid sand layers underground
def.node_shore_top=def.node_top def.node_shore_top=def.node_top
def.node_shore_filler=def.node_filler def.node_shore_filler=def.node_filler
def.node_underwater=def.node_filler def.node_underwater=def.node_top
end end
-- and call the saved method to actually do the registration -- and call the saved method to actually do the registration
old_register_biome(def) old_register_biome(def)