Skip to content

Commit

Permalink
Merge pull request Ziktofel#322 from EnvyDragon/warp-it-better
Browse files Browse the repository at this point in the history
SC2: Fixing Warp Relocate (progressive item bug)
  • Loading branch information
Ziktofel authored Oct 11, 2024
2 parents ff95fc6 + d1923bc commit f776b4d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion worlds/sc2/item_names.py
Original file line number Diff line number Diff line change
Expand Up @@ -824,7 +824,7 @@
OPTIMIZED_ORDNANCE = "Optimized Ordnance (Protoss)"
KHALAI_INGENUITY = "Khalai Ingenuity (Protoss)"
AMPLIFIED_ASSIMILATORS = "Amplified Assimilators (Protoss)"
PROGRESSIVE_WARP_RELOCATE = "Warp Relocate (Protoss)"
PROGRESSIVE_WARP_RELOCATE = "Progressive Warp Relocate (Protoss)"

# Filler items
STARTING_MINERALS = "Additional Starting Minerals"
Expand Down
2 changes: 1 addition & 1 deletion worlds/sc2/items.py
Original file line number Diff line number Diff line change
Expand Up @@ -1970,7 +1970,7 @@ def get_full_item_list():
item_names.AMPLIFIED_ASSIMILATORS:
ItemData(812 + SC2LOTV_ITEM_ID_OFFSET, ProtossItemType.Solarite_Core, 12, SC2Race.PROTOSS, origin={"ext"}),
item_names.PROGRESSIVE_WARP_RELOCATE:
ItemData(813 + SC2LOTV_ITEM_ID_OFFSET, ProtossItemType.Progressive, 1, SC2Race.PROTOSS, origin={"ext"}, quantity=2,
ItemData(813 + SC2LOTV_ITEM_ID_OFFSET, ProtossItemType.Progressive, 2, SC2Race.PROTOSS, origin={"ext"}, quantity=2,
classification=ItemClassification.progression),
}

Expand Down

0 comments on commit f776b4d

Please sign in to comment.