Re-enable ignoring 256 units of curb when clipping against ceilings

This fixes getting stuck on tiny lips created by sloppy slopes in the undersized vents in DUKEDC3.MAP.

git-svn-id: https://svn.eduke32.com/eduke32@8639 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
terminx 2020-02-11 09:21:52 +00:00 committed by Christoph Oelckers
parent 376c29dba6
commit ff3ec2e66b
1 changed files with 1 additions and 1 deletions

View File

@ -871,7 +871,7 @@ static int cliptestsector(int const dasect, int const nextsect, int32_t const fl
((sec2->ceilingstat&1) == 0 &&
posz <= dacz2+(ceildist-1) &&
dacz2 > dacz /*+CLIPCURBHEIGHT*/)); // ceilings check the same conditions ^^^^^
dacz2 > dacz+CLIPCURBHEIGHT)); // ceilings check the same conditions ^^^^^
}
int32_t clipmovex(vec3_t *pos, int16_t *sectnum,