update botstats command

This commit is contained in:
Lee
2024-06-27 13:25:12 +01:00
parent 4a7e7de6a2
commit 001ece7899
3 changed files with 200 additions and 0 deletions

View File

@ -0,0 +1,27 @@
package cc.fascinated.bat.common;
import lombok.experimental.UtilityClass;
import java.text.DecimalFormat;
import java.text.DecimalFormatSymbols;
/**
* @author Fascinated (fascinated7)
*/
@UtilityClass
public final class MathUtils {
/**
* Format a number to a specific amount of decimal places.
*
* @param number the number to format
* @param additional the additional decimal places to format
* @return the formatted number
*/
public static double format(double number, int additional) {
return Double.parseDouble(
new DecimalFormat("#.#" + "#".repeat(Math.max(0, additional - 1)),
new DecimalFormatSymbols()
).format(number)
);
}
}