forked from Fascinated/Bat
impl ci
This commit is contained in:
@ -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);
|
||||
}
|
||||
}
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
|
@ -10,5 +10,5 @@ spring:
|
||||
# MongoDB Configuration
|
||||
mongodb:
|
||||
uri: "mongodb://bat:p4$$w0rd@localhost:27017"
|
||||
database: "bonfire"
|
||||
database: "bat"
|
||||
auto-index-creation: true # Automatically create collection indexes
|
||||
|
Reference in New Issue
Block a user