From 1378213595c5072625003ddeffa4986b64940c53 Mon Sep 17 00:00:00 2001 From: Paweł Redman Date: Fri, 13 Apr 2018 13:31:46 +0200 Subject: More spiders. --- src/game/worldgen.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') 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: -- cgit