Make trick panel tumble penalty condition stricter

This commit is contained in:
James R 2021-01-09 19:04:31 -08:00
parent 12626cc883
commit 9a2bdc090c

View file

@ -8068,7 +8068,7 @@ void K_MoveKartPlayer(player_t *player, boolean onground)
// debug shit
//CONS_Printf("%d\n", player->mo->momz / mapobjectscale);
if (momz < -20*FRACUNIT) // :youfuckedup:
if (momz < -10*FRACUNIT) // :youfuckedup:
{
// tumble if you let your chance pass!!
player->tumbleBounces = 1;