Plando: prevent duplicate candidate locations (#2286)
This commit is contained in:
parent
1a1d607b10
commit
7c2cb34b45
2
Fill.py
2
Fill.py
|
@ -847,7 +847,7 @@ def distribute_planned(world: MultiWorld) -> None:
|
|||
for target_player in worlds:
|
||||
locations += non_early_locations[target_player]
|
||||
|
||||
block['locations'] = locations
|
||||
block['locations'] = list(dict.fromkeys(locations))
|
||||
|
||||
if not block['count']:
|
||||
block['count'] = (min(len(block['items']), len(block['locations'])) if
|
||||
|
|
Loading…
Reference in New Issue