mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-25 06:51:09 +00:00
Fix compatlevel check for trick aimingcompare
This commit is contained in:
parent
161d375532
commit
3e30310e6a
1 changed files with 1 additions and 1 deletions
|
|
@ -13656,7 +13656,7 @@ void K_MoveKartPlayer(player_t *player, boolean onground)
|
|||
INT16 TRICKTHRESHOLD = 2*KART_FULLTURN/3;
|
||||
|
||||
// 2.3 - aimingcompare
|
||||
if (!!G_CompatLevel(0x000C))
|
||||
if (!G_CompatLevel(0x000C))
|
||||
{
|
||||
TRICKTHRESHOLD = KART_FULLTURN/2;
|
||||
INT16 aimingcompare = abs(cmd->throwdir) - abs(cmd->turning);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue