projects
/
oweals
/
minetest.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cffd40c
)
* clay is rarer now
author
Nils Dagsson Moskopp
<nils@dieweltistgarnichtso.net>
Wed, 1 Jun 2011 06:09:28 +0000
(08:09 +0200)
committer
Nils Dagsson Moskopp
<nils@dieweltistgarnichtso.net>
Wed, 1 Jun 2011 06:09:28 +0000
(08:09 +0200)
src/map.cpp
patch
|
blob
|
history
diff --git
a/src/map.cpp
b/src/map.cpp
index bf9f38c877598d4a39af4975d2cd33fc937b89a3..ac5bd7d14e49bf32b06aa8c56ee06d51bec736ea 100644
(file)
--- 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.9
5);
+ bool have_clay = have_sand && (claynoise >
1.2
5);
// Find ground level
s16 surface_y = find_ground_level_clever(data->vmanip, p2d);