diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/game/worldgen.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/game/worldgen.cpp b/src/game/worldgen.cpp index 44464f2..574d0cd 100644 --- a/src/game/worldgen.cpp +++ b/src/game/worldgen.cpp @@ -37,8 +37,8 @@ static void add_entity(uint8_t tile_type, world_t *world, state_t *game, v2f_t x switch (tile_type) { case TILE_DIRT: - noise_nest = 0.42f; - noise_spider = 0.39f; + noise_nest = 0.40f; + noise_spider = 0.38f; break; case TILE_DIRT_RED: @@ -47,8 +47,8 @@ static void add_entity(uint8_t tile_type, world_t *world, state_t *game, v2f_t x break; case TILE_GRAVEL: - noise_nest = 0.36f; - noise_spider = 0.33f; + noise_nest = 0.34f; + noise_spider = 0.32f; break; default: |