Fixed stand-ground gladiators not attacking at certain range

This commit is contained in:
BjossiAlfreds 2023-04-22 18:45:54 +00:00
parent f762ee6116
commit 4a9c7f897e

View file

@ -275,7 +275,12 @@ gladiator_attack(edict_t *self)
return;
}
/* a small safe zone */
/* a small safe zone
but not for stand-ground ones since players can
abuse it by standing still inside this range
*/
if (!(self->monsterinfo.aiflags & AI_STAND_GROUND))
{
VectorSubtract(self->s.origin, self->enemy->s.origin, v);
range = VectorLength(v);
@ -283,6 +288,7 @@ gladiator_attack(edict_t *self)
{
return;
}
}
/* charge up the railgun */
gi.sound(self, CHAN_WEAPON, sound_gun, 1, ATTN_NORM, 0);