summaryrefslogtreecommitdiff
path: root/src/mapgen_v7.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mapgen_v7.h')
-rw-r--r--src/mapgen_v7.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/mapgen_v7.h b/src/mapgen_v7.h
index 877f3d089..6fb7dc4bb 100644
--- a/src/mapgen_v7.h
+++ b/src/mapgen_v7.h
@@ -22,12 +22,12 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include "mapgen.h"
-/////////////// Mapgen V7 flags
+///////////// Mapgen V7 flags
#define MGV7_MOUNTAINS 0x01
#define MGV7_RIDGES 0x02
#define MGV7_FLOATLANDS 0x04
#define MGV7_CAVERNS 0x08
-#define MGV7_BIOMEREPEAT 0x10
+#define MGV7_BIOMEREPEAT 0x10 // Now unused
class BiomeManager;
@@ -35,8 +35,7 @@ extern FlagDesc flagdesc_mapgen_v7[];
struct MapgenV7Params : public MapgenParams {
- u32 spflags = MGV7_MOUNTAINS | MGV7_RIDGES |
- MGV7_CAVERNS | MGV7_BIOMEREPEAT;
+ u32 spflags = MGV7_MOUNTAINS | MGV7_RIDGES | MGV7_CAVERNS;
s16 mount_zero_level = 0;
float cave_width = 0.09f;
s16 large_cave_depth = -33;