Increase max number of locations

Updated from 100 to 500
This commit is contained in:
Mathx2 2022-01-22 22:48:20 -08:00 committed by GitHub
parent f0cfe30a36
commit 1518168843
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -13,9 +13,9 @@ base_location_table = {
"Level Four": None,
"Level Five": None
}
# 37006 - 37106
# 37006 - 37506
item_pickups = {
f"ItemPickup{i}": 37005+i for i in range(1, 101)
f"ItemPickup{i}": 37005+i for i in range(1, 501)
}
location_table = {**base_location_table, **item_pickups}