This commit is contained in:
Lee
2024-06-24 15:45:53 +01:00
parent ac3529ed88
commit b703f51868
6 changed files with 87 additions and 24 deletions

View File

@ -1,16 +1,24 @@
package cc.fascinated.bat.common;
import java.text.DecimalFormat;
import java.text.NumberFormat;
/**
* @author Fascinated (fascinated7)
*/
public class NumberUtils {
/**
* Formats a number with commas.
* <p>
* Example: 1000 -> 1,000 | Example: 1000.5 -> 1,000.5
* </p>
*
* @param number the number to format
* @return the formatted number
*/
public static String formatNumberCommas(double number) {
return String.format("%,.0f", number);
NumberFormat format = NumberFormat.getNumberInstance();
format.setGroupingUsed(true);
return format.format(number);
}
}

View File

@ -98,13 +98,7 @@ public class CommandService extends ListenerAdapter {
});
// Register all commands
for (BatCommand command : commands.values()) {
if (command.getCommandData() == null) {
continue;
}
jda.upsertCommand(command.getCommandData()).complete(); // Register the command on Discord
}
jda.updateCommands().addCommands(commands.values().stream().map(BatCommand::getCommandData).toList()).complete();
log.info("Registered all slash commands in {}ms", System.currentTimeMillis() - before);
}