summaryrefslogtreecommitdiff
path: root/src/game/worldgen.cpp
diff options
context:
space:
mode:
authorPaweł Redman <pawel.redman@gmail.com>2018-04-26 12:32:12 +0200
committerPaweł Redman <pawel.redman@gmail.com>2018-04-26 12:32:12 +0200
commit193f7a17d2e4ab99ed0cd909c696c3f0b9833041 (patch)
tree5a22f5a33396fcf8a29db7c5473364d93c275cdf /src/game/worldgen.cpp
parent86872106dc9aa960b417b5ff7f4a175c81058411 (diff)
Rebalance the game again.
Diffstat (limited to 'src/game/worldgen.cpp')
-rw-r--r--src/game/worldgen.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/game/worldgen.cpp b/src/game/worldgen.cpp
index de47988..12bd3b1 100644
--- a/src/game/worldgen.cpp
+++ b/src/game/worldgen.cpp
@@ -78,11 +78,11 @@ just_decos:
break;
case TILE_DIRT:
- if (noise > 0.35)
+ if (noise > 0.34)
type = DECO_CRYSTAL;
- else if (noise > 0.34)
- type = DECO_CRYSTAL_BROKEN;
else if (noise > 0.33)
+ type = DECO_CRYSTAL_BROKEN;
+ else if (noise > 0.32)
type = DECO_STONE;
else if (noise > 0.26)
type = DECO_SPIKE;
@@ -95,7 +95,7 @@ just_decos:
break;
case TILE_GRAVEL:
- if (noise > 0.30)
+ if (noise > 0.26)
type = DECO_CRYSTAL;
else if (noise > 0.25)
type = DECO_STONE;