mirror of
https://github.com/yquake2/xatrix.git
synced 2024-11-10 06:42:22 +00:00
Merge pull request #84 from BjossiAlfreds/gladrange
Fixed stand-ground gladiators not attacking at certain range
This commit is contained in:
commit
9626e71c86
2 changed files with 24 additions and 12 deletions
|
@ -289,13 +289,19 @@ gladb_attack(edict_t *self)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* a small safe zone */
|
/* a small safe zone
|
||||||
VectorSubtract(self->s.origin, self->enemy->s.origin, v);
|
but not for stand-ground ones since players can
|
||||||
range = VectorLength(v);
|
abuse it by standing still inside this range
|
||||||
|
*/
|
||||||
if (range <= (MELEE_DISTANCE + 32))
|
if (!(self->monsterinfo.aiflags & AI_STAND_GROUND))
|
||||||
{
|
{
|
||||||
return;
|
VectorSubtract(self->s.origin, self->enemy->s.origin, v);
|
||||||
|
range = VectorLength(v);
|
||||||
|
|
||||||
|
if (range <= (MELEE_DISTANCE + 32))
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* charge up the railgun */
|
/* charge up the railgun */
|
||||||
|
|
|
@ -275,13 +275,19 @@ gladiator_attack(edict_t *self)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* a small safe zone */
|
/* a small safe zone
|
||||||
VectorSubtract(self->s.origin, self->enemy->s.origin, v);
|
but not for stand-ground ones since players can
|
||||||
range = VectorLength(v);
|
abuse it by standing still inside this range
|
||||||
|
*/
|
||||||
if (range <= (MELEE_DISTANCE + 32))
|
if (!(self->monsterinfo.aiflags & AI_STAND_GROUND))
|
||||||
{
|
{
|
||||||
return;
|
VectorSubtract(self->s.origin, self->enemy->s.origin, v);
|
||||||
|
range = VectorLength(v);
|
||||||
|
|
||||||
|
if (range <= (MELEE_DISTANCE + 32))
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* charge up the railgun */
|
/* charge up the railgun */
|
||||||
|
|
Loading…
Reference in a new issue