diff options
Diffstat (limited to 'src/game/worldgen.cpp')
-rw-r--r-- | src/game/worldgen.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/game/worldgen.cpp b/src/game/worldgen.cpp index 74a07c7..01b05ca 100644 --- a/src/game/worldgen.cpp +++ b/src/game/worldgen.cpp @@ -12,7 +12,9 @@ void add_decoration(world_t *world, state_t *game, v2f_t x, float noise) if (noise < 0.3) return; - if (noise > 0.45) + if (noise > 0.5) + type = DECO_NEST; + else if (noise > 0.40) type = DECO_EYETHING; else if (noise > 0.35) type = DECO_STONE; |