Skip to content

Commit

Permalink
Update characterCreator.js
Browse files Browse the repository at this point in the history
  • Loading branch information
davespser authored Dec 6, 2024
1 parent eaac6ef commit 38894bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/characterCreator.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ submitButton.addEventListener("click", async () => {
SPD: (g / 255) * 100,
MAG: (b / 255) * 100,
DEF: ((r / 255) * 100,
ACC: ((g + b) / (2 * 255) * 100,
ACC: (g + b) / (2 * 255) * 100,
VIT: ((r + g + b) / 3 * 255) * 100
};

Expand Down

0 comments on commit 38894bf

Please sign in to comment.