Epic oversight in upside-down spawn offset.

This commit is contained in:
Nev3r 2019-12-11 15:48:44 +01:00
parent d2cbdd4fb1
commit d34fd4b755
1 changed files with 1 additions and 1 deletions

View File

@ -11615,7 +11615,7 @@ static fixed_t GetMobjSpawnHeight (const mobjtype_t i, const mapthing_t* mthing,
#ifdef ESLOPE
ss->sector->c_slope ? P_GetZAt(ss->sector->c_slope, x, y) :
#endif
ss->sector->ceilingheight) - extraoffset - mobjinfo[i].height;
ss->sector->ceilingheight) - extraoffset - heightoffset - mobjinfo[i].height;
else
return (
#ifdef ESLOPE