From 09e67a243312d986888090a81692c5a545b75811 Mon Sep 17 00:00:00 2001 From: codefairy Date: Wed, 2 Dec 2020 22:48:54 -0500 Subject: [PATCH] Change ore definitions to match default non-v6 mapgens --- init.lua | 38 ++++++++++++++++++++++++++++++-------- 1 file changed, 30 insertions(+), 8 deletions(-) diff --git a/init.lua b/init.lua index c6b0689..eb9f6ae 100644 --- a/init.lua +++ b/init.lua @@ -134,8 +134,8 @@ minetest.register_ore({ clust_scarcity = 18 * 18 * 18, clust_num_ores = 3, clust_size = 2, - y_max = -64, - y_min = -255, + y_max = -512, + y_min = -1023, }) minetest.register_ore({ @@ -145,7 +145,7 @@ minetest.register_ore({ clust_scarcity = 14 * 14 * 14, clust_num_ores = 5, clust_size = 3, - y_max = -256, + y_max = -1024, y_min = -31000, }) @@ -167,7 +167,18 @@ minetest.register_ore({ clust_scarcity = 36 * 36 * 36, clust_num_ores = 3, clust_size = 2, - y_max = -1024, + y_max = -2048, + y_min = -4095, +}) + +minetest.register_ore({ + ore_type = "scatter", + ore = "maggems:misi", + wherein = "default:stone", + clust_scarcity = 36 * 36 * 36, + clust_num_ores = 3, + clust_size = 2, + y_max = -4096, y_min = -31000, }) @@ -189,8 +200,8 @@ minetest.register_ore({ clust_scarcity = 18 * 18 * 18, clust_num_ores = 3, clust_size = 2, - y_max = -64, - y_min = -255, + y_max = -512, + y_min = -1023, }) minetest.register_ore({ @@ -200,7 +211,7 @@ minetest.register_ore({ clust_scarcity = 14 * 14 * 14, clust_num_ores = 5, clust_size = 3, - y_max = -256, + y_max = -1024, y_min = -31000, }) @@ -222,6 +233,17 @@ minetest.register_ore({ clust_scarcity = 36 * 36 * 36, clust_num_ores = 3, clust_size = 2, - y_max = -1024, + y_max = -2048, + y_min = -4095, +}) + +minetest.register_ore({ + ore_type = "scatter", + ore = "maggems:musu", + wherein = "default:stone", + clust_scarcity = 36 * 36 * 36, + clust_num_ores = 3, + clust_size = 2, + y_max = -4096, y_min = -31000, })