Skip to content

Commit

Permalink
adjust Heal_Stats table
Browse files Browse the repository at this point in the history
  • Loading branch information
Drevarr committed Nov 13, 2024
1 parent a1359b9 commit 84c3df2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified Top_Stats.db
Binary file not shown.
2 changes: 1 addition & 1 deletion output_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -904,7 +904,7 @@ def build_healing_summary(top_stats: dict, caption: str, tid_date_time: str) ->
for healer in sorted_healing_stats:
if (healer[1]['healing'] + healer[1]['downed_healing'] + healer[1]['barrier']):
fighttime = healer[1]['fight_time'] / 1000
row = f"|{healer[0]} |"+" {{"+f"{healer[1]['profession']}"+"}} "+f"|{healer[1]['account'][:32]} | {fighttime:.2f}|"
row = f"|{healer[0].split('|')[0]} |"+" {{"+f"{healer[1]['profession']}"+"}} "+f"|{healer[1]['account'][:32]} | {fighttime:.2f}|"
row += f" {healer[1]['healing']:,}| {healer[1]['healing'] / fighttime:,.2f}| {healer[1]['barrier']:,}|"
row += f"{healer[1]['barrier'] / fighttime:,.2f}| {healer[1]['downed_healing']:,}| {healer[1]['downed_healing'] / fighttime:,.2f}|"
rows.append(row)
Expand Down

0 comments on commit 84c3df2

Please sign in to comment.