diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2015-09-21 15:53:11 +0100 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2015-09-21 15:53:11 +0100 |
commit | bf889c4bfce2be5e51b2126dbc2f0cb17e4e2b9a (patch) | |
tree | 57454d1325497ffd4ab870a7e461eb0e9e310a52 /mapgen_v7n.lua | |
parent | 1c67373e242acfec6cd0e4d2abf4433db7a89b64 (diff) |
Fiery biomes limited to 20 so floating lava falls don't occur
Diffstat (limited to 'mapgen_v7n.lua')
-rw-r--r-- | mapgen_v7n.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mapgen_v7n.lua b/mapgen_v7n.lua index a94c818..bba65f3 100644 --- a/mapgen_v7n.lua +++ b/mapgen_v7n.lua @@ -455,7 +455,7 @@ minetest.register_biome({ node_filler = "default:dirt",
depth_filler = 5,
y_min = 5,
- y_max = 65,
+ y_max = 20, -- was 65
heat_point = 80,
humidity_point = 10,
})
|