From bc8737d22963ddfdd39043f9ea961d9e1301669d Mon Sep 17 00:00:00 2001 From: gaithern Date: Thu, 11 Jan 2024 08:27:34 -0600 Subject: [PATCH] Update Data.py --- worlds/lol/Data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worlds/lol/Data.py b/worlds/lol/Data.py index d6e66e7e9568..3b5e6bd85563 100644 --- a/worlds/lol/Data.py +++ b/worlds/lol/Data.py @@ -18,7 +18,7 @@ item_data = requests.get(items_url).json()["data"] for item_id in item_data.keys(): - if "into" not in item_data[item_id].keys() and item_data[item_id]["gold"]["purchasable"] and item_data[item_id]["gold"]["total"] > 1000: + if "into" not in item_data[item_id].keys() and item_data[item_id]["gold"]["purchasable"] and item_data[item_id]["gold"]["total"] > 1000 and "requiredAlly" not in item_data[item_id].keys(): if item_data[item_id]["maps"][str(sr_map_id)]: sr_items[item_id] = item_data[item_id]["name"] if item_data[item_id]["maps"][str(aram_map_id)]: