summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNils Dagsson Moskopp <nils@dieweltistgarnichtso.net>2011-06-01 08:09:28 +0200
committerNils Dagsson Moskopp <nils@dieweltistgarnichtso.net>2011-06-01 08:09:28 +0200
commitc930a92b7222e0228332fb39536d7ff4f3442d1b (patch)
treea0dd8d52bb61b7ad1303ebf5a9898c45d908f3d6 /src
parentcffd40c5d6c1427d2cce7cbcfe57669da73459c6 (diff)
downloadminetest-c930a92b7222e0228332fb39536d7ff4f3442d1b.tar.gz
minetest-c930a92b7222e0228332fb39536d7ff4f3442d1b.tar.bz2
minetest-c930a92b7222e0228332fb39536d7ff4f3442d1b.zip
* clay is rarer now
Diffstat (limited to 'src')
-rw-r--r--src/map.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map.cpp b/src/map.cpp
index bf9f38c87..ac5bd7d14 100644
--- a/src/map.cpp
+++ b/src/map.cpp
@@ -3144,9 +3144,9 @@ void makeChunk(ChunkMakeData *data)
// Determine whether to have clay in the sand here
double claynoise = noise2d_perlin(
0.5+(float)p2d.X/500, 0.5+(float)p2d.Y/500,
- data->seed+4321, 8, 0.95);
+ data->seed+4321, 6, 0.95);
- bool have_clay = have_sand && (claynoise > 0.95);
+ bool have_clay = have_sand && (claynoise > 1.25);
// Find ground level
s16 surface_y = find_ground_level_clever(data->vmanip, p2d);