Give enemies more health in Plus mode.
This commit is contained in:
parent
6fe72e4b2a
commit
3ae8a2a717
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue