Skip to content

Commit

Permalink
final changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ThePhar committed Jul 2, 2023
1 parent fb8b78c commit dd025ef
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion MultiServer.py
Original file line number Diff line number Diff line change
Expand Up @@ -958,7 +958,7 @@ def register_location_checks(ctx: Context, team: int, slot: int, locations: typi

if ctx.item_names[item_id].endswith(" Stone"):
info_text = json_format_stone_event(new_item, target_player)
elif ctx.item_names[item_id].startswith("the dusted"):
elif ctx.item_names[item_id].startswith("the dusty"):
info_text = json_format_dust_event(new_item, target_player)
elif ctx.item_names[item_id] == "Triforce Piece":
info_text = json_format_triforce_event(new_item, target_player)
Expand Down
2 changes: 2 additions & 0 deletions worlds/alttp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -492,12 +492,14 @@ def stage_pre_fill(cls, world: MultiWorld):
"Progressive Mail": "the dusty remains of some Red Mail",
"Progressive Shield": "the dusty remains of a Mirror Shield",
"Progressive Sword": "the dusty remains of a sword",
"Pegasus Boots": "the dusty remains of vanity boots",
}

prog_item_snapped: typing.Dict[str, typing.List[int]] = {
"Progressive Sword": [],
"Progressive Mail": [],
"Progressive Shield": [],
"Pegasus Boots": [],
}

piece_index = 0
Expand Down
1 change: 1 addition & 0 deletions worlds/infinity_gauntlet/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ class IGWorld(World):
"the dusty remains of a bee": 69_889_000 + 0x0E,
"the dusty remains of a bunch of bees": 69_889_000 + 0xB0,
"the dusty remains of a sword": 69_889_000 + 0x5E,
"the dusty remains of vanity boots": 69_889_000 + 1000,
}

def create_item(self, name: str) -> IGItem:
Expand Down

0 comments on commit dd025ef

Please sign in to comment.