Core: do not error on location exclusion if the location has an ID value
This commit is contained in:
parent
6ade832029
commit
0fed7f1295
|
@ -23,10 +23,13 @@ def locality_rules(world, player: int):
|
||||||
|
|
||||||
def exclusion_rules(world, player: int, exclude_locations: typing.Set[str]):
|
def exclusion_rules(world, player: int, exclude_locations: typing.Set[str]):
|
||||||
for loc_name in exclude_locations:
|
for loc_name in exclude_locations:
|
||||||
location = world.get_location(loc_name, player)
|
try:
|
||||||
add_item_rule(location, lambda i: not (i.advancement or i.never_exclude))
|
location = world.get_location(loc_name, player)
|
||||||
location.excluded = True
|
add_item_rule(location, lambda i: not (i.advancement or i.never_exclude))
|
||||||
|
location.excluded = True
|
||||||
|
except KeyError as e: # failed to find the given location. Check if it's a legitimate location
|
||||||
|
if loc_name not in world.worlds[player].location_name_to_id:
|
||||||
|
raise Exception(f"Could not find location {loc_name} in player {player}'s world.") from e
|
||||||
|
|
||||||
def set_rule(spot, rule: CollectionRule):
|
def set_rule(spot, rule: CollectionRule):
|
||||||
spot.access_rule = rule
|
spot.access_rule = rule
|
||||||
|
|
Loading…
Reference in New Issue