Skip to content

Commit

Permalink
credits correctly show fourkeys locations
Browse files Browse the repository at this point in the history
  • Loading branch information
Anonymous committed Apr 19, 2023
1 parent 8e35a66 commit 5c23a17
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion randomizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -5812,7 +5812,10 @@ def extract_location_boss(findstr):
return location, boss

reward_item_order = [0x1a8, 0x1a7, 0x1aa, 0x1ab, 0x1c0, 0x1c1]
reward_item_order += list(range(0x1b0, 0x1c0))
if 'fourkeys' in get_activated_codes():
reward_item_order += list(range(0x1c6, 0x1ca))
else:
reward_item_order += list(range(0x1b0, 0x1c0))

boss_matcher = re.compile('\. 53\((..)\)')
s3 = center('ITEM LOCATIONS')
Expand Down

0 comments on commit 5c23a17

Please sign in to comment.