Skip to content

Commit

Permalink
πŸ‘‹ bye bye
Browse files Browse the repository at this point in the history
  • Loading branch information
tookender committed Nov 5, 2024
1 parent 2a444da commit f7c0cde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/dq/calculators.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def create_damage_embed(title: str, damage_data: dict, multiply: int = 1) -> Emb
stats = damage_data[category]
embed.add_field(
name=f"{emoji} {label}",
value=f"**Low Damage:** {fn(stats['Low Damage']) * multiply}\n**Average Damage:** {fn(stats['Average']) * multiply}\n**High Damage:** {fn(stats['High Damage']) * multiply}",
value=f"**Low Damage:** {fn(stats['Low Damage'] * multiply)}\n**Average Damage:** {fn(stats['Average'] * multiply)}\n**High Damage:** {fn(stats['High Damage'] * multiply)}",
inline=False
)

Expand Down

0 comments on commit f7c0cde

Please sign in to comment.