Skip to content

Commit a872d17

Browse files
committed
For some reason, we were still starting Location IDs at 501. Let's not do that.
1 parent 002debd commit a872d17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Locations.py

Lines changed: 1 addition & 1 deletion
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)