mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-12 08:36:22 +00:00
Make Metal's vertical float speed technically negative
This commit is contained in:
parent
f6e135dccc
commit
0234ed6b6a
1 changed files with 1 additions and 1 deletions
|
|
@ -5550,7 +5550,7 @@ static void P_DoJumpStuff(player_t *player, ticcmd_t *cmd)
|
|||
else
|
||||
potentialmomz = ((player->speed < 10*player->mo->scale)
|
||||
? (player->speed - 10*player->mo->scale)/5
|
||||
: 0);
|
||||
: -1);
|
||||
if (P_MobjFlip(player->mo)*player->mo->momz < potentialmomz)
|
||||
player->mo->momz = P_MobjFlip(player->mo)*potentialmomz;
|
||||
player->pflags &= ~PF_SPINNING;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue