diff options
author | Paweł Redman <pawel.redman@gmail.com> | 2018-04-13 13:31:46 +0200 |
---|---|---|
committer | Paweł Redman <pawel.redman@gmail.com> | 2018-04-13 13:31:46 +0200 |
commit | 1378213595c5072625003ddeffa4986b64940c53 (patch) | |
tree | 1aaed1a6fda4e514dd0ce4d5ca2b4c05d3dc00c1 /src | |
parent | 88ab09fbd5cbcc6173e5d7d370a0ad4886d13bf7 (diff) |
More spiders.
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: |