1
0
mirror of https://github.com/luanti-org/luanti.git synced 2025-10-16 01:45:36 +02:00

Cavegen: Mgv6: No small caves entirely above ground

Mgv5/mgv7: Remove 'should make cave hole' feature
Remove ravine code
This commit is contained in:
paramat
2015-07-18 20:37:04 +01:00
parent e47f390e0d
commit 4046f3e302
2 changed files with 36 additions and 72 deletions

View File

@@ -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