World: remove ClassVar typing from topology_present (#3294)
This commit is contained in:
parent
77cce68c08
commit
9a82edc931
|
@ -206,8 +206,8 @@ class World(metaclass=AutoWorldRegister):
|
||||||
|
|
||||||
game: ClassVar[str]
|
game: ClassVar[str]
|
||||||
"""name the game"""
|
"""name the game"""
|
||||||
topology_present: ClassVar[bool] = False
|
topology_present: bool = False
|
||||||
"""indicate if world type has any meaningful layout/pathing"""
|
"""indicate if this world has any meaningful layout/pathing"""
|
||||||
|
|
||||||
all_item_and_group_names: ClassVar[FrozenSet[str]] = frozenset()
|
all_item_and_group_names: ClassVar[FrozenSet[str]] = frozenset()
|
||||||
"""gets automatically populated with all item and item group names"""
|
"""gets automatically populated with all item and item group names"""
|
||||||
|
|
Loading…
Reference in New Issue