Only start removing items from the bottom half pool after the cooldown

Should hopefully curb the boost spamming a little
This commit is contained in:
Anonimus 2025-11-02 21:24:23 -05:00
parent 87e390baaf
commit c6aaf0009b

View file

@ -872,7 +872,7 @@ INT32 K_KartGetItemOdds(
// This item should not appear at the end of a race. (Usually trap items that lose their effectiveness)
newodds = 0;
}
else if ((notForBottom == true) && (inBottom == true))
else if ((notForBottom == true) && (inBottom == true) && (leveltime >= (30*TICRATE)+starttime))
{
// This item should not appear for losing players. (Usually items that feel less effective at these positions)
newodds = 0;