Skip to content

Hylics 2: Add missing location #1917

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

Merged
merged 2 commits into from
Jun 30, 2023
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion worlds/hylics2/Items.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class ItemDict(TypedDict):
'count': 6,
'name': 'SOUL SPONGE'},
200626: {'classification': ItemClassification.useful,
'count': 6,
'count': 7,
'name': 'MUSCLE APPLIQUE'},
200627: {'classification': ItemClassification.filler,
'count': 1,
Expand Down
2 changes: 2 additions & 0 deletions worlds/hylics2/Locations.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ class LocationDict(TypedDict, total=False):
'region': 4},
200635: {'name': "New Muldul: Pot near Vault",
'region': 4},
200785: {'name': "New Muldul: Pot above Vault",
'region': 4},
200636: {'name': "New Muldul: Underground Pot",
'region': 4},
200637: {'name': "New Muldul: Underground Chest",
Expand Down
2 changes: 2 additions & 0 deletions worlds/hylics2/Rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,8 @@ def set_rules(hylics2world):
lambda state: state._hylics2_has_upper_house_key(player))
add_rule(world.get_location("New Muldul: Upper House Chest 2", player),
lambda state: state._hylics2_has_upper_house_key(player))
add_rule(world.get_location("New Muldul: Pot above Vault", player),
lambda state: state._hylics2_can_air_dash(player))

# New Muldul Vault
add_rule(world.get_location("New Muldul: Rescued Blerol 1", player),
Expand Down
2 changes: 1 addition & 1 deletion worlds/hylics2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class Hylics2World(World):

topology_present: bool = True

data_version = 1
data_version = 2

start_location = "Waynehouse"

Expand Down