changed the wrong word in the dict

This commit is contained in:
alwaysintreble
2023-02-24 21:34:47 -06:00
parent 018a99436b
commit 1b4c61b4e9

View File

@@ -570,9 +570,9 @@ class MultiWorld():
if not state:
state = CollectionState(self)
players: Dict[str, Set[int]] = {
"full": set(),
"minimal": set(),
"items": set(),
"locations": set()
"full": set()
}
for player, access in self.accessibility.items():
players[access.current_key].add(player)