mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-03-23 19:31:05 +00:00
Merge branch 'firefuck' into 'master'
Firefuck (resolves #291). Closes #291 See merge request STJr/SRB2Internal!476
This commit is contained in:
commit
535aa79418
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue