more fixes

This commit is contained in:
CookieCat
2023-10-23 22:30:06 -04:00
parent 100a5f9099
commit a20a9e89e7
3 changed files with 6 additions and 4 deletions

View File

@@ -722,7 +722,7 @@ zero_jumps_expert = {
misc_required=["No Bonk Badge"],
dlc_flags=HatDLC.death_wish),
"Sleepy Subcon (Zero Jumps)": LocData(0, "Sleepy Subcon", required_hats=[HatType.ICE], dlc_flags=HatDLC.death_wish),
"Sleepy Subcon (Zero Jumps)": LocData(0, "Time Rift - Sleepy Subcon", required_hats=[HatType.ICE], dlc_flags=HatDLC.death_wish),
"Ship Shape (Zero Jumps)": LocData(0, "Ship Shape", required_hats=[HatType.ICE], dlc_flags=HatDLC.dlc1_dw),
}

View File

@@ -61,7 +61,6 @@ def adjust_options(world: World):
world.multiworld.ShuffleActContracts[world.player].value = 0
world.multiworld.EnableDLC1[world.player].value = 0
world.multiworld.LogicDifficulty[world.player].value = -1
world.multiworld.KnowledgeChecks[world.player].value = 0
world.multiworld.DWTimePieceRequirement[world.player].value = 0

View File

@@ -832,8 +832,11 @@ def get_shuffled_region(self, region: str) -> str:
def create_thug_shops(world: World):
min_items: int = world.multiworld.NyakuzaThugMinShopItems[world.player].value
max_items: int = world.multiworld.NyakuzaThugMaxShopItems[world.player].value
min_items: int = min(world.multiworld.NyakuzaThugMinShopItems[world.player].value,
world.multiworld.NyakuzaThugMaxShopItems[world.player].value)
max_items: int = max(world.multiworld.NyakuzaThugMaxShopItems[world.player].value,
world.multiworld.NyakuzaThugMinShopItems[world.player].value)
count: int = -1
step: int = 0
old_name: str = ""