Timespinner: Fixed Dry lake serene oddity (#1501)

This commit is contained in:
Jarno
2023-03-04 16:31:44 +01:00
committed by GitHub
parent d74c4c4c94
commit cd234fc04a
3 changed files with 32 additions and 40 deletions

View File

@@ -144,8 +144,8 @@ class TimespinnerWorld(World):
flooded_areas.append("Castle Courtyard")
if self.precalculated_weights.flood_lake_desolation:
flooded_areas.append("Lake Desolation")
if self.precalculated_weights.dry_lake_serene:
flooded_areas.append("Dry Lake Serene")
if not self.precalculated_weights.dry_lake_serene:
flooded_areas.append("Lake Serene")
if len(flooded_areas) == 0:
flooded_areas_string: str = "None"