fix message and fix category name
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 42s
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 42s
This commit is contained in:
parent
bd9f4ef971
commit
2349f10b35
@ -20,7 +20,7 @@ public enum Category {
|
||||
UTILITY(Emoji.fromFormatted("U+1F6E0"), "Utility", false),
|
||||
MUSIC(Emoji.fromFormatted("U+1F3B5"), "Music", false),
|
||||
MOVIES_TV(Emoji.fromFormatted("U+1F3A5"), "Movies & TV", false),
|
||||
MESSAGES(Emoji.fromFormatted("U+1F4A3"), "Snipe", false),
|
||||
MESSAGES(Emoji.fromFormatted("U+1F4A3"), "Messages", false),
|
||||
LOGS(Emoji.fromFormatted("U+1F4D1"), "Logs", false),
|
||||
BEAT_SABER(Emoji.fromFormatted("U+1FA84"), "Beat Saber", false),
|
||||
BOT_ADMIN(null, null, true);
|
||||
|
@ -66,7 +66,8 @@ public class SetSubCommand extends BatSubCommand {
|
||||
}
|
||||
if (time > ReminderFeature.MAX_REMINDER_LENGTH) {
|
||||
event.replyEmbeds(EmbedUtils.errorEmbed()
|
||||
.setDescription("The time must be at most %s.".formatted(TimeUtils.format(ReminderFeature.MAX_REMINDER_LENGTH)))
|
||||
.setDescription("The time must be at most %s.".formatted(TimeUtils.format(ReminderFeature.MAX_REMINDER_LENGTH,
|
||||
TimeUtils.BatTimeFormat.FIT, true)))
|
||||
.build()).queue();
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user