1
0
mirror of git://repo.or.cz/rocks.git synced 2025-05-07 19:47:04 +02:00

Fix igneous ores not spawning in mountains.

This commit is contained in:
Tomáš Brada 2015-04-20 15:05:09 +02:00
parent 8a1bf6d522
commit a1091cf94c

View File

@ -37,13 +37,13 @@ minetest.register_node( "rocks:gabbro", {
local reg=function(name,param) local reg=function(name,param)
minetest.register_ore({ minetest.register_ore({
ore = name, ore = name,
wherein= { "mapgen_stone" }, wherein= { "mapgen_stone", "default:stone", "rocks:basalt" },
ore_type = "scatter", ore_type = "scatter",
clust_scarcity = 10^3, clust_scarcity = 10^3,
clust_num_ores = 20^3, clust_num_ores = 20^3,
clust_size = 20, clust_size = 20,
height_min = -31000, height_min = -31000,
height_max = -5, height_max = 28,
noise_treshhold=param.treshold, noise_treshhold=param.treshold,
noise_params={ noise_params={
offset = 0, scale = 1, octaves = 3, persist = 0.5, offset = 0, scale = 1, octaves = 3, persist = 0.5,