Skip to content

Commit

Permalink
Re Add fix for Spearmarshal's Support castID versus damageID
Browse files Browse the repository at this point in the history
  • Loading branch information
Drevarr committed Sep 6, 2024
1 parent 60c0f65 commit 73ea871
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions TW5_parse_top_stats_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -3742,6 +3742,8 @@ def get_stats_from_fight_json(fight_json, config, log):
for skill_cast in player['rotation']:
skill_id = skill_cast['id']
skill_name = skill_Dict[str(skill_id)]['name']
if skill_id == 72992: #Adjust Spearmarshal's support damage ID for cast ID
skill_id = 74290
if skill_name in Player_Damage_by_Skill[squadDps_prof_name]['Skills'].keys():
skill_casts = len(skill_cast['skills'])
Player_Damage_by_Skill[squadDps_prof_name]['Skills'][skill_name][7]+=skill_casts
Expand Down

0 comments on commit 73ea871

Please sign in to comment.