From 6687001212f1ac73a7a8830f712ddeaa6842d0fe Mon Sep 17 00:00:00 2001 From: BjossiAlfreds Date: Fri, 27 Sep 2019 23:33:01 +0000 Subject: [PATCH] Fixed monsters not sidestepping --- src/g_ai.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/g_ai.c b/src/g_ai.c index ddeed99..37e13c4 100644 --- a/src/g_ai.c +++ b/src/g_ai.c @@ -1122,7 +1122,7 @@ ai_run_slide(edict_t *self, float distance) /* clamp maximum sideways move for non flyers to make them look less jerky */ if (!(self->flags & FL_FLY)) { - distance = min(distance, 0.8); + distance = min(distance, 8.0); } if (M_walkmove(self, self->ideal_yaw + ofs, distance))