diff --git a/worlds/timespinner/Regions.py b/worlds/timespinner/Regions.py index 237bbc3d..91b072ec 100644 --- a/worlds/timespinner/Regions.py +++ b/worlds/timespinner/Regions.py @@ -45,7 +45,8 @@ def create_regions(world: MultiWorld, player: int, locations: Tuple[LocationData create_region(world, player, locations_per_region, location_cache, 'Space time continuum') ] - throwIfAnyLocationIsNotAssignedToARegion(regions, locations_per_region.keys()) + if __debug__: + throwIfAnyLocationIsNotAssignedToARegion(regions, locations_per_region.keys()) world.regions += regions diff --git a/worlds/timespinner/__init__.py b/worlds/timespinner/__init__.py index a720aa91..623de7c6 100644 --- a/worlds/timespinner/__init__.py +++ b/worlds/timespinner/__init__.py @@ -37,7 +37,7 @@ class TimespinnerWorld(World): def generate_early(self): - # in generate_early the start_inventory isnt copied over to precollected_items, so we can still moffify the options directly + # in generate_early the start_inventory isnt copied over to precollected_items yet, so we can still modify the options directly if self.world.start_inventory[self.player].value.pop('Meyef', 0) > 0: self.world.StartWithMeyef[self.player].value = self.world.StartWithMeyef[self.player].option_true if self.world.start_inventory[self.player].value.pop('Talaria Attachment', 0) > 0: