diff --git a/Unittest.py b/Unittest.py index dd46b03c6..0ca925ebe 100644 --- a/Unittest.py +++ b/Unittest.py @@ -418,11 +418,8 @@ def required_checks(self, spoiler, locations, items, locitems): 'Non-required items deemed required') # No disabled locations disables = set(spoiler['settings'].get('disabled_locations', [])) - for p in items: - if p not in locations: - locations[p] = set() self.assertEqual( - expected_none, + {p: set() for p in locations}, # keys might differ bt locations/items {p: disables & c for p, c in locations.items()}, 'Disabled locations deemed required') # No more than one of any 'once' item diff --git a/version.py b/version.py index 5ad839331..ea84a2451 100644 --- a/version.py +++ b/version.py @@ -1 +1 @@ -__version__ = '6.0.133 f.LUM' +__version__ = '6.0.134 f.LUM'