summaryrefslogtreecommitdiff
path: root/src/script/lua_api/l_mapgen.cpp
diff options
context:
space:
mode:
authorparamat <mat.gregory@virginmedia.com>2015-08-02 01:35:05 +0100
committerparamat <mat.gregory@virginmedia.com>2015-08-03 02:34:32 +0100
commitcf77e0333d1ba0aa81fdce80cd0fa32f137b0a47 (patch)
treecc564d59722aa11255aab45b640563a15876f91f /src/script/lua_api/l_mapgen.cpp
parentabe6c072d66777b171399f42548bad75f618f1a3 (diff)
downloadminetest-cf77e0333d1ba0aa81fdce80cd0fa32f137b0a47.tar.gz
minetest-cf77e0333d1ba0aa81fdce80cd0fa32f137b0a47.tar.bz2
minetest-cf77e0333d1ba0aa81fdce80cd0fa32f137b0a47.zip
Biome API: Make fallback biome stone and water, disable filler
Diffstat (limited to 'src/script/lua_api/l_mapgen.cpp')
-rw-r--r--src/script/lua_api/l_mapgen.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/script/lua_api/l_mapgen.cpp b/src/script/lua_api/l_mapgen.cpp
index bf5e3631e..d30b68054 100644
--- a/src/script/lua_api/l_mapgen.cpp
+++ b/src/script/lua_api/l_mapgen.cpp
@@ -374,8 +374,8 @@ Biome *read_biome_def(lua_State *L, int index, INodeDefManager *ndef)
Biome *b = BiomeManager::create(biometype);
b->name = getstringfield_default(L, index, "name", "");
- b->depth_top = getintfield_default(L, index, "depth_top", 1);
- b->depth_filler = getintfield_default(L, index, "depth_filler", 2);
+ b->depth_top = getintfield_default(L, index, "depth_top", 0);
+ b->depth_filler = getintfield_default(L, index, "depth_filler", -31000);
b->depth_water_top = getintfield_default(L, index, "depth_water_top", 0);
b->y_min = getintfield_default(L, index, "y_min", -31000);
b->y_max = getintfield_default(L, index, "y_max", 31000);