diff options
author | paramat <mat.gregory@virginmedia.com> | 2015-07-18 20:37:04 +0100 |
---|---|---|
committer | paramat <mat.gregory@virginmedia.com> | 2015-07-19 02:47:11 +0100 |
commit | 4046f3e302a3394bf376caf543cb643e1562bc5e (patch) | |
tree | 13108b00606930f5204f20f8bb633b56c2b5957e /src/cavegen.h | |
parent | e47f390e0d37d7906bbbe6a082cc69e10235a3ba (diff) | |
download | minetest-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.h | 4 |
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 |