mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 04:21:47 +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_MINE:
|
||||||
case KITEM_GROW:
|
case KITEM_GROW:
|
||||||
case KITEM_BUBBLESHIELD:
|
case KITEM_BUBBLESHIELD:
|
||||||
case KITEM_FLAMESHIELD:
|
|
||||||
{
|
{
|
||||||
conditions.cooldownOnStart = true;
|
conditions.cooldownOnStart = true;
|
||||||
conditions.powerItem = true;
|
conditions.powerItem = true;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
case KITEM_FLAMESHIELD:
|
||||||
|
case KITEM_GARDENTOP:
|
||||||
|
{
|
||||||
|
conditions.cooldownOnStart = true;
|
||||||
|
conditions.powerItem = true;
|
||||||
|
conditions.notNearEnd = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
case KITEM_SPB:
|
case KITEM_SPB:
|
||||||
{
|
{
|
||||||
conditions.cooldownOnStart = true;
|
conditions.cooldownOnStart = true;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue