summaryrefslogtreecommitdiff
path: root/src/cavegen.h
diff options
context:
space:
mode:
authorparamat <mat.gregory@virginmedia.com>2015-07-18 20:37:04 +0100
committerparamat <mat.gregory@virginmedia.com>2015-07-19 02:47:11 +0100
commit4046f3e302a3394bf376caf543cb643e1562bc5e (patch)
tree13108b00606930f5204f20f8bb633b56c2b5957e /src/cavegen.h
parente47f390e0d37d7906bbbe6a082cc69e10235a3ba (diff)
downloadminetest-4046f3e302a3394bf376caf543cb643e1562bc5e.tar.gz
minetest-4046f3e302a3394bf376caf543cb643e1562bc5e.tar.bz2
minetest-4046f3e302a3394bf376caf543cb643e1562bc5e.zip
Cavegen: Mgv6: No small caves entirely above ground
Mgv5/mgv7: Remove 'should make cave hole' feature Remove ravine code
Diffstat (limited to 'src/cavegen.h')
-rw-r--r--src/cavegen.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cavegen.h b/src/cavegen.h
index 38ef57c5a..5d150802a 100644
--- a/src/cavegen.h
+++ b/src/cavegen.h
@@ -69,7 +69,7 @@ public:
CaveV5(MapgenV5 *mg, PseudoRandom *ps);
void makeCave(v3s16 nmin, v3s16 nmax, int max_stone_height);
void makeTunnel(bool dirswitch);
- void carveRoute(v3f vec, float f, bool randomize_xz, bool is_ravine);
+ void carveRoute(v3f vec, float f, bool randomize_xz);
};
class CaveV6 {
@@ -158,7 +158,7 @@ public:
CaveV7(MapgenV7 *mg, PseudoRandom *ps);
void makeCave(v3s16 nmin, v3s16 nmax, int max_stone_height);
void makeTunnel(bool dirswitch);
- void carveRoute(v3f vec, float f, bool randomize_xz, bool is_ravine);
+ void carveRoute(v3f vec, float f, bool randomize_xz);
};
#endif