introduce World.topology_present, to indicate if any meaningful path information is available in the world

This commit is contained in:
Fabian Dill
2021-07-08 11:07:41 +02:00
parent ffc00b7800
commit 172c1789a8
4 changed files with 5 additions and 2 deletions

View File

@@ -28,6 +28,7 @@ class World(metaclass=AutoWorldRegister):
world: MultiWorld
player: int
options: dict = {}
topology_present: bool = False # indicate if world type has any meaningful layout/pathing
def __init__(self, world: MultiWorld, player: int):
self.world = world