Give enemies more health in Plus mode.

This commit is contained in:
Steve 2018-05-01 08:40:57 +01:00
parent 6fe72e4b2a
commit 3ae8a2a717
1 changed files with 5 additions and 0 deletions

View File

@ -79,6 +79,11 @@ static void init(void)
{
u->canCarryItem = 1;
u->health = u->healthMax = rrnd(1, 4);
if (game.plus)
{
u->health = u->healthMax = rrnd(4, 8);
}
}
}