From 1518168843670279f22c6fe2438f9db6261ed141 Mon Sep 17 00:00:00 2001 From: Mathx2 Date: Sat, 22 Jan 2022 22:48:20 -0800 Subject: [PATCH] Increase max number of locations Updated from 100 to 500 --- worlds/ror2/Locations.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/worlds/ror2/Locations.py b/worlds/ror2/Locations.py index b3de5cff..d1e62386 100644 --- a/worlds/ror2/Locations.py +++ b/worlds/ror2/Locations.py @@ -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}