forked from Fascinated/Bat
add scoresaber feed command and websocket impl
This commit is contained in:
@ -19,6 +19,7 @@ public class NumberUtils {
|
||||
public static String formatNumberCommas(double number) {
|
||||
NumberFormat format = NumberFormat.getNumberInstance();
|
||||
format.setGroupingUsed(true);
|
||||
format.setMaximumFractionDigits(2);
|
||||
return format.format(number);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user