From a1091cf94c342f32372e641ab76d6b05aeb0b92a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Brada?= Date: Mon, 20 Apr 2015 15:05:09 +0200 Subject: [PATCH] Fix igneous ores not spawning in mountains. --- rocks/ign.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rocks/ign.lua b/rocks/ign.lua index a3c221c..2324c6f 100644 --- a/rocks/ign.lua +++ b/rocks/ign.lua @@ -37,13 +37,13 @@ minetest.register_node( "rocks:gabbro", { local reg=function(name,param) minetest.register_ore({ ore = name, - wherein= { "mapgen_stone" }, + wherein= { "mapgen_stone", "default:stone", "rocks:basalt" }, ore_type = "scatter", clust_scarcity = 10^3, clust_num_ores = 20^3, clust_size = 20, height_min = -31000, - height_max = -5, + height_max = 28, noise_treshhold=param.treshold, noise_params={ offset = 0, scale = 1, octaves = 3, persist = 0.5,