Skip to content

Commit

Permalink
TUNIC: Fix hero relics not being prog if hex quest is on in combat lo…
Browse files Browse the repository at this point in the history
  • Loading branch information
ScipioWright authored Jan 20, 2025
1 parent 4f77aba commit 96f469c
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions worlds/tunic/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,10 +331,11 @@ def remove_filler(amount: int) -> None:

remove_filler(items_to_create[gold_hexagon])

# Sort for deterministic order
for hero_relic in sorted(item_name_groups["Hero Relics"]):
tunic_items.append(self.create_item(hero_relic, ItemClassification.useful))
items_to_create[hero_relic] = 0
if not self.options.combat_logic:
# Sort for deterministic order
for hero_relic in sorted(item_name_groups["Hero Relics"]):
tunic_items.append(self.create_item(hero_relic, ItemClassification.useful))
items_to_create[hero_relic] = 0

if not self.options.ability_shuffling:
# Sort for deterministic order
Expand Down

0 comments on commit 96f469c

Please sign in to comment.