Skip to content

Commit ce617db

Browse files
Br00tyFlySniper
authored andcommitted
DS3: move an items location from RC -> DH (ArchipelagoMW#2017)
* moves items location from RC -> DH "Ring of Steel Protection+3" actually belongs in DH instead of RC. this will shift the item ID's for the last 3 items in RC, and should not shift any ids in DH * updated data_version to 7
1 parent fd5c3d3 commit ce617db

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

worlds/dark_souls_3/Locations.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -530,6 +530,7 @@ def get_name_to_id() -> dict:
530530
DS3LocationData("DH: Small Envoy Banner", "Small Envoy Banner", DS3LocationCategory.KEY),
531531
DS3LocationData("DH: Ring of Favor+3", "Ring of Favor+3", DS3LocationCategory.RING),
532532
DS3LocationData("DH: Covetous Silver Serpent Ring+3", "Covetous Silver Serpent Ring+3", DS3LocationCategory.RING),
533+
DS3LocationData("DH: Ring of Steel Protection+3", "Ring of Steel Protection+3", DS3LocationCategory.RING),
533534
],
534535
"Ringed City": [
535536
DS3LocationData("RC: Ruin Sentinel Helm", "Ruin Sentinel Helm", DS3LocationCategory.ARMOR),
@@ -569,7 +570,6 @@ def get_name_to_id() -> dict:
569570
DS3LocationData("RC: Soul of Slave Knight Gael", "Soul of Slave Knight Gael", DS3LocationCategory.BOSS),
570571
DS3LocationData("RC: Blood of the Dark Soul", "Blood of the Dark Soul", DS3LocationCategory.KEY),
571572
DS3LocationData("RC: Chloranthy Ring+3", "Chloranthy Ring+3", DS3LocationCategory.RING),
572-
DS3LocationData("RC: Ring of Steel Protection+3", "Ring of Steel Protection+3", DS3LocationCategory.RING),
573573
DS3LocationData("RC: Covetous Gold Serpent Ring+3", "Covetous Gold Serpent Ring+3", DS3LocationCategory.RING),
574574
DS3LocationData("RC: Ring of the Evil Eye+3", "Ring of the Evil Eye+3", DS3LocationCategory.RING),
575575
DS3LocationData("RC: Wolf Ring+3", "Wolf Ring+3", DS3LocationCategory.RING),

worlds/dark_souls_3/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class DarkSouls3World(World):
4646
option_definitions = dark_souls_options
4747
topology_present: bool = True
4848
web = DarkSouls3Web()
49-
data_version = 6
49+
data_version = 7
5050
base_id = 100000
5151
enabled_location_categories: Set[DS3LocationCategory]
5252
required_client_version = (0, 4, 2)

0 commit comments

Comments
 (0)