stevezease
Results
1
comments of
stevezease
+1 wrote a small script to find what items were missing the requiredAlly tag: ``` (async function() { const resp = await fetch("https://ddragon.leagueoflegends.com/cdn/13.7.1/data/en_US/item.json"); const items = await resp.json(); Object.values(items.data).forEach(itemInfo =>...