From 54557e7da0ab6d1fafef7623966c6009216fa715 Mon Sep 17 00:00:00 2001 From: CookieCat <81494827+CookieCat45@users.noreply.github.com> Date: Mon, 25 Mar 2024 18:00:50 -0400 Subject: [PATCH 1/3] Update worlds/ahit/Options.py Co-authored-by: Ixrec --- worlds/ahit/Options.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worlds/ahit/Options.py b/worlds/ahit/Options.py index b08efd7e85..69be748e6c 100644 --- a/worlds/ahit/Options.py +++ b/worlds/ahit/Options.py @@ -516,7 +516,7 @@ class DWShuffleCountMax(Range): class DWEnableBonus(Toggle): - """In Death Wish, allow the full completion of contracts to reward items. + """In Death Wish, add a location for completing all of a DW contract's bonuses, in addition to the location for completing the DW contract normally. WARNING!! Only for the brave! This option can create VERY DIFFICULT SEEDS! ONLY turn this on if you know what you are doing to yourself and everyone else in the multiworld! Using Peace and Tranquility to auto-complete the bonuses will NOT count!""" From 5700b74f619e6590c7fe9924fb3383b21187a1b0 Mon Sep 17 00:00:00 2001 From: CookieCat <81494827+CookieCat45@users.noreply.github.com> Date: Mon, 25 Mar 2024 18:08:12 -0400 Subject: [PATCH 2/3] typo Co-authored-by: Ixrec --- worlds/ahit/Locations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worlds/ahit/Locations.py b/worlds/ahit/Locations.py index cddd821698..1097df5d9b 100644 --- a/worlds/ahit/Locations.py +++ b/worlds/ahit/Locations.py @@ -114,7 +114,7 @@ def get_location_names() -> Dict[str, int]: ahit_locations = { "Spaceship - Rumbi Abuse": LocData(2000301000, "Spaceship", hit_requirement=1), - # 300000 range - Mafia Town/Batle of the Birds + # 300000 range - Mafia Town/Battle of the Birds "Welcome to Mafia Town - Umbrella": LocData(2000301002, "Welcome to Mafia Town"), "Mafia Town - Old Man (Seaside Spaghetti)": LocData(2000303833, "Mafia Town Area"), "Mafia Town - Old Man (Steel Beams)": LocData(2000303832, "Mafia Town Area"), From b00eb53ebb20d893924e7c9984e1cbc071df27c5 Mon Sep 17 00:00:00 2001 From: CookieCat <81494827+CookieCat45@users.noreply.github.com> Date: Mon, 25 Mar 2024 18:11:27 -0400 Subject: [PATCH 3/3] Update worlds/ahit/Rules.py Co-authored-by: Ixrec --- worlds/ahit/Rules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worlds/ahit/Rules.py b/worlds/ahit/Rules.py index 028b062224..07061d6ead 100644 --- a/worlds/ahit/Rules.py +++ b/worlds/ahit/Rules.py @@ -410,7 +410,7 @@ def set_specific_rules(world: "HatInTimeWorld"): if difficulty >= Difficulty.HARD: set_hard_rules(world) - if difficulty >= 2: + if difficulty >= Difficulty.EXPERT: set_expert_rules(world)