Ambrosia logic fixes

This commit is contained in:
aerinon
2021-09-14 15:00:55 -06:00
parent a6e49513be
commit a9b872b88d
2 changed files with 2 additions and 2 deletions

View File

@@ -680,7 +680,7 @@ def create_graph_piece_from_state(door, o_state, b_state, proposed_map, exceptio
def filter_for_potential_bk_locations(locations, world, player):
return [x for x in locations if '- Big Chest' not in x.name and not not reserved_location(x, world, player) and
return [x for x in locations if '- Big Chest' not in x.name and not reserved_location(x, world, player) and
not x.forced_item and not prize_or_event(x) and not blind_boss_unavail(x, locations, world, player)]