Fix for AI attacking secondary targets.
This commit is contained in:
parent
48f08a3fb0
commit
edc6127109
|
@ -272,16 +272,6 @@ static void huntAndAttackTarget(void)
|
|||
nextAction();
|
||||
}
|
||||
|
||||
static int attackSecondaryTarget(Entity *e)
|
||||
{
|
||||
if (self->target->aiFlags & (AIF_AVOIDS_COMBAT | AIF_EVADE) || self->target->flags & EF_SECONDARY_TARGET)
|
||||
{
|
||||
return rand() % 4 == 0;
|
||||
}
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
static void findTarget(void)
|
||||
{
|
||||
int i;
|
||||
|
@ -302,11 +292,8 @@ static void findTarget(void)
|
|||
|
||||
if (dist < closest)
|
||||
{
|
||||
if (!self->target || attackSecondaryTarget(e))
|
||||
{
|
||||
self->target = e;
|
||||
closest = dist;
|
||||
}
|
||||
self->target = e;
|
||||
closest = dist;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -316,6 +303,14 @@ static int canAttack(Entity *e)
|
|||
{
|
||||
self->selectedGunType = self->guns[0].type;
|
||||
|
||||
if (e->aiFlags & (AIF_AVOIDS_COMBAT | AIF_EVADE) || e->flags & EF_SECONDARY_TARGET)
|
||||
{
|
||||
if (rand() % 10)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
if (e->flags & EF_MUST_DISABLE)
|
||||
{
|
||||
if (e->systemPower > 0)
|
||||
|
|
Loading…
Reference in New Issue