make the scoresaber main cmd show more data

This commit is contained in:
Lee
2024-06-24 14:21:51 +01:00
parent 0b176c3b2a
commit 82e241f6ac
9 changed files with 33 additions and 31 deletions

View File

@ -0,0 +1,16 @@
package cc.fascinated.bat.common;
/**
* @author Fascinated (fascinated7)
*/
public class NumberUtils {
/**
* Formats a number with commas.
*
* @param number the number to format
* @return the formatted number
*/
public static String formatNumberCommas(double number) {
return String.format("%,.0f", number);
}
}