Merge branch 'freeplay-never-scam' into 'master'

Never apply frontrun protection in freeplay

Closes #1474

See merge request KartKrew/Kart!2458
This commit is contained in:
Oni 2024-09-17 03:24:19 +00:00
commit 7219d36521

View file

@ -443,6 +443,9 @@ boolean K_IsPlayerLosing(player_t *player)
// Some behavior should change if the player approaches the frontrunner unusually fast.
boolean K_IsPlayerScamming(player_t *player)
{
if (!M_NotFreePlay())
return false;
// "Why 8?" Consistency
// "Why 2000?" Vibes
return (K_GetItemRouletteDistance(player, 8) < 2000);