Skip to content

Commit

Permalink
Merge branch 'main' into new-buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
Xanewok authored Apr 4, 2022
2 parents f662293 + 5e629ef commit 8b84acb
Show file tree
Hide file tree
Showing 4 changed files with 835 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/components/Status/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ const Status = ({
}, [bossHealth])

const bossPercent = () => {
return ((bossHealth + 1) / bossMaxHealth) * 100
return (bossHealth / bossMaxHealth) * 100
}

const bossPercentInverse = () => {
Expand Down
Loading

0 comments on commit 8b84acb

Please sign in to comment.