Whoops forgot this for last commit

This commit is contained in:
Monster Iestyn 2016-02-15 20:55:57 +00:00
parent b5673ed101
commit fa1bc5a09b
1 changed files with 2 additions and 2 deletions

View File

@ -8451,12 +8451,12 @@ void P_MovePlayerToStarpost(INT32 playernum)
floor =
#ifdef ESLOPE
sector->f_slope ? P_GetZAt(sector->f_slope, x, y) :
sector->f_slope ? P_GetZAt(sector->f_slope, mobj->x, mobj->y) :
#endif
sector->floorheight;
ceiling =
#ifdef ESLOPE
sector->c_slope ? P_GetZAt(sector->c_slope, x, y) :
sector->c_slope ? P_GetZAt(sector->c_slope, mobj->x, mobj->y) :
#endif
sector->ceilingheight;