Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix incorrect location ids on Orange Island #1

Merged
merged 1 commit into from
Aug 14, 2023
Merged
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
6 changes: 3 additions & 3 deletions worlds/shorthike/Locations.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,8 @@ class LocationDict(TypedDict):
{"name": "Orange Islands South Buried Chest", "id": base_id + 116, "inGameId": "(79.2, 19.7, 1150.5)", "needsShovel": True, "purchase": False},
{"name": "Orange Islands West Chest", "id": base_id + 117, "inGameId": "(111.8, 16.6, 1305.4)", "needsShovel": False, "purchase": False},
{"name": "Orange Islands North Buried Chest", "id": base_id + 118, "inGameId": "(88.4, 29.8, 1417.9)", "needsShovel": True, "purchase": False},
{"name": "Orange Islands East Chest", "id": base_id + 119, "inGameId": "(441.9, 12.3, 1250.2)", "needsShovel": False, "purchase": False},
{"name": "Orange Islands South Hidden Chest", "id": base_id + 120, "inGameId": "", "needsShovel": False, "purchase": False},
{"name": "Orange Islands East Chest", "id": base_id + 119, "inGameId": "(483.7, 16.8, 1424.6)", "needsShovel": False, "purchase": False},
{"name": "Orange Islands South Hidden Chest", "id": base_id + 120, "inGameId": "(441.9, 12.3, 1250.2)", "needsShovel": False, "purchase": False},
{"name": "A Stormy View Buried Treasure Chest", "id": base_id + 121, "inGameId": "(319.5, 8.9, 1314.1)", "needsShovel": True, "purchase": False},
{"name": "Orange Islands Ruins Buried Chest", "id": base_id + 122, "inGameId": "(406.6, 46.3, 1311.0)", "needsShovel": True, "purchase": False},

Expand All @@ -174,4 +174,4 @@ class LocationDict(TypedDict):
{"name": "Old Building Race Reward", "id": base_id + 124, "inGameId": "RaceOpponent[1]", "needsShovel": False, "purchase": False},
{"name": "Hawk Peak Race Reward", "id": base_id + 125, "inGameId": "RaceOpponent[2]", "needsShovel": False, "purchase": False},
{"name": "Lose Race Gift", "id": base_id + 131, "inGameId": "RaceOpponent[9]", "needsShovel": False, "purchase": False},
]
]