SC2: Small bugfix for SC2 logic #4126

This commit is contained in:
Ziktofel 2024-11-03 15:27:04 +01:00 committed by GitHub
parent 048658955b
commit 96abc32f7d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -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,