diff --git a/README.md b/README.md index cbfdf75f05..2310964899 100644 --- a/README.md +++ b/README.md @@ -65,6 +65,7 @@ Currently, the following games are supported: * Castlevania 64 * A Short Hike * Yoshi's Island +* A Hat in Time For setup and instructions check out our [tutorials page](https://archipelago.gg/tutorial/). Downloads can be found at [Releases](https://github.com/ArchipelagoMW/Archipelago/releases), including compiled diff --git a/docs/CODEOWNERS b/docs/CODEOWNERS index ffe6387455..f8861ce0d5 100644 --- a/docs/CODEOWNERS +++ b/docs/CODEOWNERS @@ -13,6 +13,9 @@ # Adventure /worlds/adventure/ @JusticePS +# A Hat in Time +/worlds/ahit/ @CookieCat45 + # A Link to the Past /worlds/alttp/ @Berserker66 diff --git a/worlds/ahit/Rules.py b/worlds/ahit/Rules.py index 9e458f7f7a..7b6278dc91 100644 --- a/worlds/ahit/Rules.py +++ b/worlds/ahit/Rules.py @@ -859,14 +859,14 @@ def set_rift_rules(world: "HatInTimeWorld", regions: Dict[str, Region]): for entrance in regions["Time Rift - Alpine Skyline"].entrances: add_rule(entrance, lambda state: has_relic_combo(state, world, "Crayon")) - if world.is_dlc1() > 0: + if world.is_dlc1(): for entrance in regions["Time Rift - Balcony"].entrances: add_rule(entrance, lambda state: can_clear_required_act(state, world, "The Arctic Cruise - Finale")) for entrance in regions["Time Rift - Deep Sea"].entrances: add_rule(entrance, lambda state: has_relic_combo(state, world, "Cake")) - if world.is_dlc2() > 0: + if world.is_dlc2(): for entrance in regions["Time Rift - Rumbi Factory"].entrances: add_rule(entrance, lambda state: has_relic_combo(state, world, "Necklace"))