mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
150% tripwire threshold in Special
This commit is contained in:
parent
7fa79fa64a
commit
295f88327c
1 changed files with 3 additions and 0 deletions
|
|
@ -2998,6 +2998,9 @@ fixed_t K_PlayerTripwireSpeedThreshold(const player_t *player)
|
|||
{
|
||||
fixed_t required_speed = 2 * K_GetKartSpeed(player, false, false); // 200%
|
||||
|
||||
if (specialstageinfo.valid)
|
||||
required_speed = 3 * K_GetKartSpeed(player, false, false) / 2; // 150%
|
||||
|
||||
UINT32 distance = K_GetItemRouletteDistance(player, 8);
|
||||
|
||||
if (gametype == GT_RACE && M_NotFreePlay() && !modeattacking)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue