mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-03-03 01:41:15 +00:00
Update k_roulette.c
This commit is contained in:
parent
7d3be06795
commit
d5141a9ea1
1 changed files with 2 additions and 2 deletions
|
|
@ -1391,7 +1391,7 @@ void K_FillItemRouletteData(const player_t *player, itemroulette_t *const roulet
|
|||
{
|
||||
if (K_ItemEnabled(i) == true)
|
||||
{
|
||||
spawnChance[i] = ( totalSpawnChance++ );
|
||||
spawnChance[i] = ( totalSpawnChance += 1 );
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -1403,7 +1403,7 @@ void K_FillItemRouletteData(const player_t *player, itemroulette_t *const roulet
|
|||
continue;
|
||||
}
|
||||
|
||||
K_AddItemToReel(player, roulette, i);
|
||||
K_PushToRouletteItemList(roulette, i);
|
||||
|
||||
for (; i < NUMKARTRESULTS; i++)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue