Skip to content

Commit

Permalink
Generation Failure Fix
Browse files Browse the repository at this point in the history
Khaydarin_monolith logic was incorrect
  • Loading branch information
MadiMadsen committed Nov 17, 2023
1 parent ad09301 commit 15f9815
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worlds/sc2/Locations.py
Original file line number Diff line number Diff line change
Expand Up @@ -950,7 +950,7 @@ def get_locations(multiworld: Optional[MultiWorld], player: Optional[int]) -> Tu
LocationData("Last Stand", "Last Stand: 1 Billion Zerg", SC2LOTV_LOC_ID_OFFSET + 1004, LocationType.MISSION_PROGRESS,
lambda state: logic.last_stand_requirement(state)),
LocationData("Last Stand", "Last Stand: 1.5 Billion Zerg", SC2LOTV_LOC_ID_OFFSET + 1005, LocationType.BONUS,
lambda state: state.has(ItemNames.KHAYDARIN_MONOLITH) and logic.last_stand_requirement(state)), # TODO: Look into another ways around when Protoss unit upgrades land
lambda state: state.has(ItemNames.KHAYDARIN_MONOLITH, player) and logic.last_stand_requirement(state)), # TODO: Look into another ways around when Protoss unit upgrades land
LocationData("Forbidden Weapon", "Forbidden Weapon: Victory", SC2LOTV_LOC_ID_OFFSET + 1100, LocationType.VICTORY,
lambda state: logic.protoss_common_unit(state)
and logic.protoss_anti_armor_anti_air(state)),
Expand Down

0 comments on commit 15f9815

Please sign in to comment.