Drop weapons a little more frequently.

This commit is contained in:
Steve 2018-03-04 10:50:00 +00:00
parent 3b88f1c973
commit f3cf1ec945
2 changed files with 2 additions and 2 deletions

View File

@ -72,7 +72,7 @@ static void die2(void)
throwFleshChunks(u->x + u->w / 2, u->y + u->h / 2, rrnd(3, 6));
if (rand() % 10 < 3)
if (rand() % 10 < 4)
{
addRandomWeapon(u->x, u->y);
}

View File

@ -80,7 +80,7 @@ static void touch(Entity *other)
throwDebris(u->x + u->w / 2, u->y + u->h / 2, rrnd(3, 5));
if (rand() % 100 < 30)
if (rand() % 10 < 4)
{
addRandomWeapon(u->x, u->y);
}