diff options
Diffstat (limited to 'src/game.c')
-rw-r--r-- | src/game.c | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -640,14 +640,14 @@ static void update_entities(play_t *play, game_t *game) unsigned qty; float chance; } quantities[] = { - { .qty = 4, .chance = .5 }, - { .qty = 6, .chance = .25 }, - { .qty = 9, .chance = .12 }, - { .qty = 12, .chance = .08 }, - { .qty = 18, .chance = .06 }, - { .qty = 24, .chance = .04 }, - { .qty = 30, .chance = .02 }, - { .qty = 36, .chance = .005 }, + { .qty = 4, .chance = .25 }, + { .qty = 6, .chance = .125 }, + { .qty = 9, .chance = .06 }, + { .qty = 12, .chance = .04 }, + { .qty = 18, .chance = .03 }, + { .qty = 24, .chance = .02 }, + { .qty = 30, .chance = .01 }, + { .qty = 36, .chance = .001 }, }; game->teepee->quantity = 1; |