Increased surrender chance.

This commit is contained in:
Steve 2016-05-24 09:09:58 +01:00
parent 71bff998ca
commit 4092ae6a10
1 changed files with 1 additions and 1 deletions

View File

@ -601,7 +601,7 @@ static int isSurrendering(void)
{
chance = self->health;
chance /= self->maxHealth;
chance *= 100;
chance *= 75;
if (rand() % 100 > chance)
{