Landstalker: Fixed rare generation issues (#3353)

Co-authored-by: Fabian Dill <Berserker66@users.noreply.github.com>
This commit is contained in:
Dinopony
2024-06-01 13:39:57 +02:00
committed by GitHub
parent 97c9c5310b
commit 1e205f9d73
5 changed files with 23 additions and 4 deletions

View File

@@ -10,7 +10,7 @@ if TYPE_CHECKING:
def _landstalker_has_visited_regions(state: CollectionState, player: int, regions):
return all([state.can_reach(region, None, player) for region in regions])
return all(state.has("event_visited_" + region.code, player) for region in regions)
def _landstalker_has_health(state: CollectionState, player: int, health):