mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-01-30 13:10:55 +00:00
Whoops forgot this for last commit
This commit is contained in:
parent
b5673ed101
commit
fa1bc5a09b
1 changed files with 2 additions and 2 deletions
|
@ -8451,12 +8451,12 @@ void P_MovePlayerToStarpost(INT32 playernum)
|
||||||
|
|
||||||
floor =
|
floor =
|
||||||
#ifdef ESLOPE
|
#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
|
#endif
|
||||||
sector->floorheight;
|
sector->floorheight;
|
||||||
ceiling =
|
ceiling =
|
||||||
#ifdef ESLOPE
|
#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
|
#endif
|
||||||
sector->ceilingheight;
|
sector->ceilingheight;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue