mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-12-31 12:13:16 +00:00
Tyron you suck at using your editor
This commit is contained in:
parent
b03056e4c8
commit
b43df44156
2 changed files with 4 additions and 1 deletions
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue