Fix K_AirFailsafe speed

This commit is contained in:
Sally Coolatta 2023-05-15 19:04:06 -04:00
parent 69181e4ff2
commit fc1f586f47

View file

@ -10236,7 +10236,7 @@ boolean K_FastFallBounce(player_t *player)
static void K_AirFailsafe(player_t *player)
{
const fixed_t maxSpeed = K_MomentumAngle(player->mo);
const fixed_t maxSpeed = 6*player->mo->scale;
const fixed_t thrustSpeed = 6*player->mo->scale; // 10*player->mo->scale
if (player->speed > maxSpeed // Above the max speed that you're allowed to use this technique.