- Fixed: The MAPINFO flags that control jumping, crouching, and freelook,
rather than overriding the dmflags values, actually overwrote the dmflags values, so they would continue to be in effect on later maps that didn't explicitly specify them. SVN r595 (trunk)
This commit is contained in:
parent
acbe3a191e
commit
f618134f15
9 changed files with 42 additions and 24 deletions
|
|
@ -2698,7 +2698,7 @@ fixed_t P_AimLineAttack (AActor *t1, angle_t angle, fixed_t distance, fixed_t vr
|
|||
// can't shoot outside view angles
|
||||
if (vrange == 0)
|
||||
{
|
||||
if (t1->player == NULL || dmflags & DF_NO_FREELOOK)
|
||||
if (t1->player == NULL || !level.IsFreelookAllowed())
|
||||
{
|
||||
vrange = ANGLE_1*35;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue