Fix broken Overworld

This commit is contained in:
Wuzzy 2017-08-16 18:56:39 +02:00
parent f9e880e210
commit 6e93424f03
2 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@ else
mcl_vars.mg_bedrock_is_rough = false mcl_vars.mg_bedrock_is_rough = false
end end
mcl_vars.mg_overworld_max = math.huge mcl_vars.mg_overworld_max = 31000
-- The Nether -- The Nether
mcl_vars.mg_nether_min = -29000 mcl_vars.mg_nether_min = -29000

View File

@ -545,7 +545,7 @@ local function register_biomes()
minetest.register_biome({ minetest.register_biome({
name = "underground", name = "underground",
y_min = mcl_vars.mg_overworld_min, y_min = mcl_vars.mg_overworld_min,
y_max = mcl_util.y_to_layer(61), y_max = mcl_util.layer_to_y(61),
heat_point = 50, heat_point = 50,
humidity_point = 50, humidity_point = 50,
}) })