Skip to content

Commit

Permalink
SC2: Removed extra space from location (ArchipelagoMW#1697)
Browse files Browse the repository at this point in the history
  • Loading branch information
Magnemania authored Apr 11, 2023
1 parent 70ff19a commit f0324e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion worlds/sc2wol/Locations.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ def get_locations(multiworld: Optional[MultiWorld], player: Optional[int]) -> Tu
lambda state: state._sc2wol_has_mm_upgrade(multiworld, player)),
LocationData("Piercing the Shroud", "Piercing the Shroud: Second Escape Relic", SC2WOL_LOC_ID_OFFSET + 2104,
lambda state: state._sc2wol_has_mm_upgrade(multiworld, player)),
LocationData("Piercing the Shroud", "Piercing the Shroud: Brutalisk ", SC2WOL_LOC_ID_OFFSET + 2105,
LocationData("Piercing the Shroud", "Piercing the Shroud: Brutalisk", SC2WOL_LOC_ID_OFFSET + 2105,
lambda state: state._sc2wol_has_mm_upgrade(multiworld, player)),
LocationData("Whispers of Doom", "Whispers of Doom: Victory", SC2WOL_LOC_ID_OFFSET + 2200),
LocationData("Whispers of Doom", "Whispers of Doom: First Hatchery", SC2WOL_LOC_ID_OFFSET + 2201),
Expand Down
2 changes: 1 addition & 1 deletion worlds/sc2wol/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class SC2WoLWorld(World):

game = "Starcraft 2 Wings of Liberty"
web = Starcraft2WoLWebWorld()
data_version = 3
data_version = 4

item_name_to_id = {name: data.code for name, data in item_table.items()}
location_name_to_id = {location.name: location.code for location in get_locations(None, None)}
Expand Down

0 comments on commit f0324e6

Please sign in to comment.