bl score fixes
All checks were successful
Deploy Backend / docker (ubuntu-latest) (push) Successful in 46s
Deploy Website / docker (ubuntu-latest) (push) Successful in 2m24s

This commit is contained in:
Lee
2024-10-22 17:48:32 +01:00
parent 9c20aff89d
commit f090c0dcbb
6 changed files with 33 additions and 26 deletions

View File

@ -103,11 +103,6 @@ export class AdditionalScoreData {
*/
misses: Misses;
/**
* Whether the play was a full combo.
*/
fullCombo: boolean;
/**
* The change in the hand accuracy.
*/

View File

@ -41,3 +41,16 @@ export function formatNumber(num: number, type: "number" | "pp" = "number") {
}
return formatNumberWithCommas(num);
}
/**
* Ensures a number is always positive
*
* @param num the number to ensure
* @returns the positive number
*/
export function ensurePositiveNumber(num: number) {
if (num == -0) {
return 0;
}
return num < 0 ? num * -1 : num;
}