Skip to content
Snippets Groups Projects
Commit 82a9b872 authored by Sal's avatar Sal Committed by AJ Martinez
Browse files

Update power item properties

Flame Shield:
- Not near end
Garden Top:
- Not at start
- Not near end
- Is a power item
parent 08703be9
No related branches found
No related tags found
No related merge requests found
...@@ -812,10 +812,18 @@ INT32 K_KartGetItemOdds(const player_t *player, itemroulette_t *const roulette, ...@@ -812,10 +812,18 @@ 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:
{
conditions.cooldownOnStart = true;
conditions.powerItem = true;
break;
}
case KITEM_FLAMESHIELD: case KITEM_FLAMESHIELD:
case KITEM_GARDENTOP:
{ {
conditions.cooldownOnStart = true; conditions.cooldownOnStart = true;
conditions.powerItem = true; conditions.powerItem = true;
conditions.notNearEnd = true;
break; break;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment