Merge pull request #516 from MajorCooke/LOFpitchfix

A_CheckLOF Fix
This commit is contained in:
coelckers 2016-01-28 19:29:11 +01:00
commit 6eb83e99be

View file

@ -3448,11 +3448,11 @@ DEFINE_ACTION_FUNCTION_PARAMS(AActor, A_CheckLOF)
} }
else if (flags & CLOFF_AIM_VERT_NOOFFSET) else if (flags & CLOFF_AIM_VERT_NOOFFSET)
{ {
pitch += R_PointToAngle2 (0,0, xydist, target->Z() - pos.z + offsetheight + target->height / 2); pitch -= R_PointToAngle2 (0,0, xydist, target->Z() - pos.z + offsetheight + target->height / 2);
} }
else else
{ {
pitch += R_PointToAngle2 (0,0, xydist, target->Z() - pos.z + target->height / 2); pitch -= R_PointToAngle2 (0,0, xydist, target->Z() - pos.z + target->height / 2);
} }
} }
else if (flags & CLOFF_ALLOWNULL) else if (flags & CLOFF_ALLOWNULL)