summaryrefslogtreecommitdiff
path: root/src/game/worldgen.cpp
diff options
context:
space:
mode:
authorPaweł Redman <pawel.redman@gmail.com>2018-04-22 18:02:00 +0200
committerPaweł Redman <pawel.redman@gmail.com>2018-04-22 18:02:00 +0200
commitfb1988b1cd747c5f77583db827ac240dff2ed4be (patch)
tree4fa9850781fc87c1d264758119432770be564980 /src/game/worldgen.cpp
parent87422cff1507f8b5a8633eee5dadbadfef872dab (diff)
Add crystals as a currency.
Diffstat (limited to 'src/game/worldgen.cpp')
-rw-r--r--src/game/worldgen.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/worldgen.cpp b/src/game/worldgen.cpp
index 9d6ccd3..7af6315 100644
--- a/src/game/worldgen.cpp
+++ b/src/game/worldgen.cpp
@@ -78,9 +78,9 @@ just_decos:
break;
case TILE_DIRT:
- if (noise > 0.37)
+ if (noise > 0.35)
type = DECO_CRYSTAL;
- else if (noise > 0.36)
+ else if (noise > 0.34)
type = DECO_CRYSTAL_BROKEN;
else if (noise > 0.33)
type = DECO_STONE;