diff --git a/MultiServer.py b/MultiServer.py index d9fea55023d2..d0e74f2069ec 100644 --- a/MultiServer.py +++ b/MultiServer.py @@ -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) diff --git a/worlds/alttp/__init__.py b/worlds/alttp/__init__.py index 0d2fe6b3c244..7b6d2cf15e42 100644 --- a/worlds/alttp/__init__.py +++ b/worlds/alttp/__init__.py @@ -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 diff --git a/worlds/infinity_gauntlet/__init__.py b/worlds/infinity_gauntlet/__init__.py index 5a875089e8e0..5d4e05220d98 100644 --- a/worlds/infinity_gauntlet/__init__.py +++ b/worlds/infinity_gauntlet/__init__.py @@ -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: