[BUG] Viego has 10'000 mana (mp) on Data Dragon
Bug Description
Viego has 10'000 mana points (mp) on Data Dragon.
Expected Result
Since Viego is a champion that does not use any mana I would expect 0 mp.
Actual Result

Developer Impact
As I am trying to display exact stats for every champion and compare them together it seems weird to see that Veigo, who has no mana, is the champion with the most mana in the game.
- Frequency: Every API call.
- Severity: Minor, this is just just an incorrect value.
- Cost: None.
- Efficiency: Requires me to create an algorithm (complexity O(n^2)) to catch incoherencies in the statistics.
Player Impact
This should not impact league players so it's not a big issue at all.
- Frequency: Every time the user visits the site, they experiennce this issue.
- Quantity: There are "<coders using DDragon API>" players that experience this issue.
- Region: This affects players in every region.
Repro Steps
- Send a GET request to
https://ddragon.leagueoflegends.com/cdn/<version>/data/<region>/champion.json. - Search for "Viego" and look at his "mp" in his stats.
Issue Comments
This issue is not a major issue and does not need to be fixed urgently, a fix would be appreciated though.
Thank you for you hard work :)
Use the partype field instead to select what resource a champ uses.
Also work on your algorithms. If processing a linear file from start to end takes you O(n^2), thats an issue.
Thank you and I fixed that algorithm x)