Skip to content

Commit

Permalink
Small bugfix for SC2 logic
Browse files Browse the repository at this point in the history
  • Loading branch information
Ziktofel committed Oct 31, 2024
1 parent f7b9ac9 commit f2636f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions worlds/sc2/Locations.py
Original file line number Diff line number Diff line change
Expand Up @@ -1445,11 +1445,11 @@ def get_locations(world: Optional[World]) -> Tuple[LocationData, ...]:
LocationData("The Escape", "The Escape: Agent Stone", SC2NCO_LOC_ID_OFFSET + 105, LocationType.VANILLA,
lambda state: logic.the_escape_requirement(state)),
LocationData("Sudden Strike", "Sudden Strike: Victory", SC2NCO_LOC_ID_OFFSET + 200, LocationType.VICTORY,
lambda state: logic.sudden_strike_can_reach_objectives(state)),
lambda state: logic.sudden_strike_requirement(state)),
LocationData("Sudden Strike", "Sudden Strike: Research Center", SC2NCO_LOC_ID_OFFSET + 201, LocationType.VANILLA,
lambda state: logic.sudden_strike_can_reach_objectives(state)),
LocationData("Sudden Strike", "Sudden Strike: Weaponry Labs", SC2NCO_LOC_ID_OFFSET + 202, LocationType.VANILLA,
lambda state: logic.sudden_strike_requirement(state)),
lambda state: logic.sudden_strike_can_reach_objectives(state)),
LocationData("Sudden Strike", "Sudden Strike: Brutalisk", SC2NCO_LOC_ID_OFFSET + 203, LocationType.EXTRA,
lambda state: logic.sudden_strike_requirement(state)),
LocationData("Enemy Intelligence", "Enemy Intelligence: Victory", SC2NCO_LOC_ID_OFFSET + 300, LocationType.VICTORY,
Expand Down

0 comments on commit f2636f3

Please sign in to comment.