mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-05-04 07:52:22 +00:00
Never apply frontrun protection in freeplay
This commit is contained in:
parent
e5f740f4a3
commit
c661acdc74
1 changed files with 3 additions and 0 deletions
|
|
@ -443,6 +443,9 @@ boolean K_IsPlayerLosing(player_t *player)
|
||||||
// Some behavior should change if the player approaches the frontrunner unusually fast.
|
// Some behavior should change if the player approaches the frontrunner unusually fast.
|
||||||
boolean K_IsPlayerScamming(player_t *player)
|
boolean K_IsPlayerScamming(player_t *player)
|
||||||
{
|
{
|
||||||
|
if (!M_NotFreePlay())
|
||||||
|
return false;
|
||||||
|
|
||||||
// "Why 8?" Consistency
|
// "Why 8?" Consistency
|
||||||
// "Why 2000?" Vibes
|
// "Why 2000?" Vibes
|
||||||
return (K_GetItemRouletteDistance(player, 8) < 2000);
|
return (K_GetItemRouletteDistance(player, 8) < 2000);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue