- added a 'block sight' line flag.
- updated UDMF spec for player class and skill amount because the old menu limits no longer apply. - fixed: FloorAndCeiling_LowerRaise needs to consider 4 args in maps to account for the Boom compatibility hack parameter. SVN r3121 (trunk)
This commit is contained in:
parent
a8167b3110
commit
a2acc382df
7 changed files with 18 additions and 10 deletions
|
|
@ -256,7 +256,7 @@ bool SightCheck::P_SightCheckLine (line_t *ld)
|
|||
}
|
||||
|
||||
// try to early out the check
|
||||
if (!ld->backsector || !(ld->flags & ML_TWOSIDED))
|
||||
if (!ld->backsector || !(ld->flags & ML_TWOSIDED) || (ld->flags & ML_BLOCKSIGHT))
|
||||
return false; // stop checking
|
||||
|
||||
// [RH] don't see past block everything lines
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue