bl score fixes
This commit is contained in:
@ -103,11 +103,6 @@ export class AdditionalScoreData {
|
||||
*/
|
||||
misses: Misses;
|
||||
|
||||
/**
|
||||
* Whether the play was a full combo.
|
||||
*/
|
||||
fullCombo: boolean;
|
||||
|
||||
/**
|
||||
* The change in the hand accuracy.
|
||||
*/
|
||||
|
@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user