Skip to content

Commit bc17094

Browse files
authored
Merge pull request #90 from ManualForArchipelago/location_index
For some reason, we were still starting Location IDs at 501. Let's not do that.
2 parents d24e93e + a872d17 commit bc17094

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Locations.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# Generate location lookups
88
######################
99

10-
count = starting_index + 500 # 500 each for items and locations
10+
count = starting_index
1111
victory_names: list[str] = []
1212

1313
# add sequential generated ids to the lists

0 commit comments

Comments
 (0)