Discovered this issue when running py -m lolstaticdata.items upon reaching the item "Experimental Hexplate".
It looks like there's a new shop tag for ability haste (I guess because hexplate gives ultimate haste but not ability haste so it wasn't showing up in player's searches for haste?)
Error occurs in "pull_items_wiki.py" in the code tags.append(ItemAttributes.from_string(tag))
My quick fix was adding ABILITY_HASTE = "ABILITY_HASTE" to the ItemAttributes enums in "modelitem.py".
Discovered this issue when running
py -m lolstaticdata.itemsupon reaching the item "Experimental Hexplate".It looks like there's a new shop tag for ability haste (I guess because hexplate gives ultimate haste but not ability haste so it wasn't showing up in player's searches for haste?)
Error occurs in "pull_items_wiki.py" in the code
tags.append(ItemAttributes.from_string(tag))My quick fix was adding
ABILITY_HASTE = "ABILITY_HASTE"to the ItemAttributes enums in "modelitem.py".