mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-26 20:11:47 +00:00
Make Super Ring flood happen at 0 rings too
This commit is contained in:
parent
13d7c791f5
commit
8d2eb9220d
1 changed files with 3 additions and 3 deletions
|
|
@ -945,9 +945,9 @@ void K_StartItemRoulette(player_t *const player, itemroulette_t *const roulette)
|
||||||
|
|
||||||
// If we're in ring debt, pad out the reel with
|
// If we're in ring debt, pad out the reel with
|
||||||
// a BUNCH of Super Rings.
|
// a BUNCH of Super Rings.
|
||||||
if (K_ItemEnabled(KITEM_SUPERRING)
|
if (K_ItemEnabled(KITEM_SUPERRING) == true
|
||||||
&& player->rings < 0
|
&& player->rings <= 0
|
||||||
&& !(gametyperules & GTR_SPHERES))
|
&& (gametyperules & GTR_SPHERES) == 0)
|
||||||
{
|
{
|
||||||
K_PushToRouletteItemList(roulette, KITEM_SUPERRING);
|
K_PushToRouletteItemList(roulette, KITEM_SUPERRING);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue