mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 17:01:28 +00:00
Off, thanks Todd for implicit if else conditions
This commit is contained in:
parent
7a877d8782
commit
24c2b2473d
1 changed files with 28 additions and 25 deletions
|
@ -7485,7 +7485,9 @@ check_enemy_sprite:
|
|||
}
|
||||
}
|
||||
|
||||
if ((trueFloorDist < PHEIGHT + ZOFFSET3) && (checkWalkSound == 1 || checkWalkSound == 3))
|
||||
if ((trueFloorDist < PHEIGHT + ZOFFSET3))
|
||||
{
|
||||
if (checkWalkSound == 1 || checkWalkSound == 3)
|
||||
{
|
||||
if (pPlayer->spritebridge == 0 && pPlayer->walking_snd_toggle == 0 && pPlayer->on_ground)
|
||||
{
|
||||
|
@ -7519,6 +7521,7 @@ check_enemy_sprite:
|
|||
}
|
||||
else if (pPlayer->walking_snd_toggle > 0)
|
||||
pPlayer->walking_snd_toggle--;
|
||||
}
|
||||
|
||||
if (pPlayer->jetpack_on == 0 && pPlayer->inv_amount[GET_STEROIDS] > 0 && pPlayer->inv_amount[GET_STEROIDS] < 400)
|
||||
velocityModifier <<= 1;
|
||||
|
|
Loading…
Reference in a new issue