diff options
author | Paramat <paramat@users.noreply.github.com> | 2018-05-20 23:45:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-20 23:45:53 +0100 |
commit | 53d5b3ea40ce1c18540a378c5f71f4e1e60dbec8 (patch) | |
tree | b6d3cf40405389e3831e98fad5c7c164513a2428 /src/mapgen/mapgen_v6.cpp | |
parent | 22df02d25bb1ddb1de48e645c5256621ce9a9ed9 (diff) | |
download | dragonfireclient-53d5b3ea40ce1c18540a378c5f71f4e1e60dbec8.tar.xz |
Dungeons: Fix duplication of y limit parameters (#7359)
Diffstat (limited to 'src/mapgen/mapgen_v6.cpp')
-rw-r--r-- | src/mapgen/mapgen_v6.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/mapgen/mapgen_v6.cpp b/src/mapgen/mapgen_v6.cpp index ae6c2ad9b..fdfebe575 100644 --- a/src/mapgen/mapgen_v6.cpp +++ b/src/mapgen/mapgen_v6.cpp @@ -564,14 +564,11 @@ void MapgenV6::makeChunk(BlockMakeData *data) DungeonParams dp; dp.seed = seed; - dp.only_in_ground = true; dp.corridor_len_min = 1; dp.corridor_len_max = 13; dp.rooms_min = 2; dp.rooms_max = 16; - dp.y_min = -MAX_MAP_GENERATION_LIMIT; - dp.y_max = MAX_MAP_GENERATION_LIMIT; dp.np_density = NoiseParams(0.9, 0.5, v3f(500.0, 500.0, 500.0), 0, 2, 0.8, 2.0); |