Update BaseClasses.py

This commit is contained in:
NewSoupVi
2024-09-25 16:09:00 +02:00
committed by GitHub
parent f45f16fa3f
commit 28b728bc5c

View File

@@ -720,7 +720,7 @@ class CollectionState():
if new_region in reachable_regions:
blocked_connections.remove(connection)
elif connection.can_reach(self):
assert new_region, f"tried to search through an Entrance \"{connection}\" with no connected region."
assert new_region, f"tried to search through an Entrance \"{connection}\" with no connected Region"
reachable_regions.add(new_region)
blocked_connections.remove(connection)
blocked_connections.update(new_region.exits)