Skip to content

Commit e7f9270

Browse files
committed
Quick fix, to maintain compatibility with EI 3.15.0.0
- Ignore `downContribution` when collectiing RelicDataSkills
1 parent 20d65df commit e7f9270

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

TW5_parse_top_stats_tools.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2516,6 +2516,8 @@ def collect_stat_data(args, config, log, anonymize=False):
25162516
RelicDataSkills[player_name_prof][skill_name] = {stat: item[stat] for stat in item}
25172517
else:
25182518
for stat in item:
2519+
if stat == 'downContribution':
2520+
continue
25192521
RelicDataSkills[player_name_prof][skill_name][stat] += item[stat]
25202522
for cast in player_data['rotation']:
25212523
if cast['id'] == skill_id:

0 commit comments

Comments
 (0)