- 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:
Christoph Oelckers 2011-01-23 10:52:18 +00:00
commit a2acc382df
7 changed files with 18 additions and 10 deletions

View file

@ -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