mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Update power item properties
Flame Shield: - Not near end Garden Top: - Not at start - Not near end - Is a power item
This commit is contained in:
parent
08703be9d4
commit
82a9b8723e
1 changed files with 9 additions and 1 deletions
|
|
@ -812,13 +812,21 @@ INT32 K_KartGetItemOdds(const player_t *player, itemroulette_t *const roulette,
|
|||
case KITEM_MINE:
|
||||
case KITEM_GROW:
|
||||
case KITEM_BUBBLESHIELD:
|
||||
case KITEM_FLAMESHIELD:
|
||||
{
|
||||
conditions.cooldownOnStart = true;
|
||||
conditions.powerItem = true;
|
||||
break;
|
||||
}
|
||||
|
||||
case KITEM_FLAMESHIELD:
|
||||
case KITEM_GARDENTOP:
|
||||
{
|
||||
conditions.cooldownOnStart = true;
|
||||
conditions.powerItem = true;
|
||||
conditions.notNearEnd = true;
|
||||
break;
|
||||
}
|
||||
|
||||
case KITEM_SPB:
|
||||
{
|
||||
conditions.cooldownOnStart = true;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue