Tyron you suck at using your editor

This commit is contained in:
AJ Martinez 2023-08-26 22:23:10 -07:00
parent b03056e4c8
commit b43df44156
2 changed files with 4 additions and 1 deletions

View file

@ -8263,6 +8263,9 @@ void K_KartPlayerThink(player_t *player, ticcmd_t *cmd)
player->incontrol = 0;
player->incontrol++;
}
player->incontrol = min(player->incontrol, 5*TICRATE);
player->incontrol = max(player->incontrol, -5*TICRATE);
if (player->tumbleBounces > 0)
{

View file

@ -43,7 +43,7 @@ Make sure this matches the actual number of states
// 2023-08-26 +ang20 to Sal's OG values to make them friendlier - Tyron
#define STUMBLE_STEEP_VAL (ANG60 + ANG20)
#define STUMBLE_STEEP_VAL_AIR (ANG30 + ANG10 + ANG20)
#define STUMBLE_AIRTIME TICRATE*3
#define STUMBLE_AIRTIME 35
#define MAXRINGVOLUME 255
#define MINRINGVOLUME 100