Doors #156

Merged
ynerant merged 9 commits from doors into map_generation 2021-01-10 22:54:14 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 6c0aaffd77 - Show all commits

View File

@ -431,7 +431,7 @@ class Tile(Enum):
""" """
Is this Tile a wall? Is this Tile a wall?
""" """
return self == Tile.WALL return self == Tile.WALL or self == Tile.DOOR
def is_ladder(self) -> bool: def is_ladder(self) -> bool:
""" """