Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions ItemPool.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
from typing import TYPE_CHECKING, Optional

from Item import Item, ItemInfo, ItemFactory
from ItemList import REWARD_COLORS
from Location import DisableType
import StartingItems

Expand Down Expand Up @@ -1022,6 +1023,8 @@ def get_pool_core(world: World) -> tuple[list[str], dict[str, Item]]:
pool.extend(get_junk_item())
add_random_starting_items_ammo(world.randomized_starting_items)
for item, count in world.randomized_starting_items.items():
if item in REWARD_COLORS and count > 0:
world.hinted_dungeon_reward_locations[item] = None
item = ItemFactory(item, world)
for _ in range(count):
if item.solver_id is not None:
Expand Down