LTTP: fix open pyramid for real this time (#1393)

This commit is contained in:
alwaysintreble
2023-01-19 09:17:16 -06:00
committed by GitHub
parent f6616da5a9
commit 29e1c3dcf4
4 changed files with 42 additions and 2 deletions

View File

@@ -169,6 +169,9 @@ class WorldTestBase(unittest.TestCase):
def can_reach_location(self, location: str) -> bool:
return self.multiworld.state.can_reach(location, "Location", 1)
def can_reach_entrance(self, entrance: str) -> bool:
return self.multiworld.state.can_reach(entrance, "Entrance", 1)
def count(self, item_name: str) -> int:
return self.multiworld.state.count(item_name, 1)