From eb2bd1c4d70dbd104344e2d7f0ee11e60f879977 Mon Sep 17 00:00:00 2001 From: CookieCat Date: Fri, 27 Oct 2023 14:20:08 -0400 Subject: [PATCH] Missed some more --- worlds/ahit/Options.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/worlds/ahit/Options.py b/worlds/ahit/Options.py index 9c19ae1fa3..4e8738b5ce 100644 --- a/worlds/ahit/Options.py +++ b/worlds/ahit/Options.py @@ -29,6 +29,22 @@ def adjust_options(world: World): world.options.BadgeSellerMinItems.value, world.options.BadgeSellerMaxItems.value) + world.options.NyakuzaThugMinShopItems.value = min( + world.options.NyakuzaThugMinShopItems.value, + world.options.NyakuzaThugMaxShopItems.value) + + world.options.NyakuzaThugMaxShopItems.value = max( + world.options.NyakuzaThugMinShopItems.value, + world.options.NyakuzaThugMaxShopItems.value) + + world.options.DWShuffleCountMin.value = min( + world.options.DWShuffleCountMin.value, + world.options.DWShuffleCountMax.value) + + world.options.DWShuffleCountMax.value = max( + world.options.DWShuffleCountMin.value, + world.options.DWShuffleCountMax.value) + total_tps: int = get_total_time_pieces(world) if world.options.HighestChapterCost.value > total_tps-5: world.options.HighestChapterCost.value = min(45, total_tps-5)