This commit is contained in:
CookieCat
2023-11-04 17:55:48 -04:00
parent 60df274157
commit bd8698e1fd
102 changed files with 1190 additions and 1463 deletions
+1 -1
View File
@@ -417,7 +417,7 @@ class SoEWorld(World):
flags += option.to_flag()
with open(placement_file, "wb") as f: # generate placement file
for location in self.multiworld.get_locations(self.player):
for location in filter(lambda l: l.player == self.player, self.multiworld.get_locations()):
item = location.item
assert item is not None, "Can't handle unfilled location"
if item.code is None or location.address is None: