diff options
Diffstat (limited to 'src/world.cpp')
-rw-r--r-- | src/world.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/world.cpp b/src/world.cpp index e54a7ec..0cfa725 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -69,6 +69,8 @@ void WorldSystem::generate(LuaScript& script) script("ground", {LuaVariable("height", h)}); if (h == -1.0f) break; + if (h > 5000) + h = 5000; script("grass", {LuaVariable("height", g[0])}); script("grass", {LuaVariable("height", g[1])}); world.data.push_back(WorldData {true, {g[0], g[1]}, h, |