Skip to content

Commit

Permalink
Update Data.py
Browse files Browse the repository at this point in the history
  • Loading branch information
gaithern committed Jan 11, 2024
1 parent 7160cf3 commit bc8737d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worlds/lol/Data.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)]:
Expand Down

0 comments on commit bc8737d

Please sign in to comment.