This commit is contained in:
toaster 2019-11-15 16:39:22 +00:00
parent 0384cbb58a
commit 8ef83d3e57

View file

@ -7701,9 +7701,9 @@ void P_ElementalFire(player_t *player, boolean cropcircle)
I_Assert(!P_MobjWasRemoved(player->mo));
if (player->mo->eflags & MFE_VERTICALFLIP)
ground = player->mo->ceilingz - FixedMul(mobjinfo[MT_SPINFIRE].height, player->mo->scale);
ground = player->mo->ceilingz - FixedMul(mobjinfo[MT_SPINFIRE].height - 1, player->mo->scale);
else
ground = player->mo->floorz;
ground = player->mo->floorz + 1;
if (cropcircle)
{