From 10fec95cd5d92c00f3efda102d6b74404aff5aaa Mon Sep 17 00:00:00 2001 From: MajorCooke Date: Sun, 7 Feb 2016 01:36:59 -0600 Subject: [PATCH] - Fixed: the last FAF_NODISTFACTOR flag was never removed. --- src/p_enemy.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/p_enemy.cpp b/src/p_enemy.cpp index c3cba64330..1b01c33499 100644 --- a/src/p_enemy.cpp +++ b/src/p_enemy.cpp @@ -2846,8 +2846,7 @@ void A_Face (AActor *self, AActor *other, angle_t max_turn, angle_t max_pitch, a { self->pitch = other_pitch; } - if (flags & FAF_NODISTFACTOR) - self->pitch += pitch_offset; + self->pitch += pitch_offset; }