TUNIC: Fix hero relics not being prog if hex quest is on in combat logic #4509
This commit is contained in:
parent
4f77abac4f
commit
96f469c737
|
@ -331,10 +331,11 @@ class TunicWorld(World):
|
||||||
|
|
||||||
remove_filler(items_to_create[gold_hexagon])
|
remove_filler(items_to_create[gold_hexagon])
|
||||||
|
|
||||||
# Sort for deterministic order
|
if not self.options.combat_logic:
|
||||||
for hero_relic in sorted(item_name_groups["Hero Relics"]):
|
# Sort for deterministic order
|
||||||
tunic_items.append(self.create_item(hero_relic, ItemClassification.useful))
|
for hero_relic in sorted(item_name_groups["Hero Relics"]):
|
||||||
items_to_create[hero_relic] = 0
|
tunic_items.append(self.create_item(hero_relic, ItemClassification.useful))
|
||||||
|
items_to_create[hero_relic] = 0
|
||||||
|
|
||||||
if not self.options.ability_shuffling:
|
if not self.options.ability_shuffling:
|
||||||
# Sort for deterministic order
|
# Sort for deterministic order
|
||||||
|
|
Loading…
Reference in New Issue