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:
parent
87e390baaf
commit
c6aaf0009b
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue