Skip to content

Commit

Permalink
fix: floating point moment
Browse files Browse the repository at this point in the history
  • Loading branch information
1092384 committed Jan 10, 2025
1 parent efb24c6 commit b8c0de9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/sidebars/MeleeSidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export default function MeleeSidebar({ item }: MeleeSidebarProps) {
{item.cooldown}ms
</InfoboxColumn>
<InfoboxColumn title="Obstacle Damage">
x{item.obstacleMultiplier} ({item.obstacleMultiplier * item.damage})
x{item.obstacleMultiplier} <br></br>({(item.obstacleMultiplier * item.damage).toFixed(2)})
</InfoboxColumn>
</InfoboxRow>
<InfoboxRow>
Expand Down

0 comments on commit b8c0de9

Please sign in to comment.