From ea8b6e6438bad25d95f710b6d5b34736c220717c Mon Sep 17 00:00:00 2001 From: alwaysintreble Date: Mon, 27 Sep 2021 10:41:16 -0500 Subject: [PATCH] Adjustment to chaos weights. Add progression logic. --- 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 c2ef67ad..fcb48a83 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 item_pickups = { - f"ItemPickup{i}": 37005+i for i in range(1, 101) + f"Item Pickup {i}": 37005+i for i in range(1, 101) } location_table = {**base_location_table, **item_pickups}