remove debug and change some command messages

This commit is contained in:
Lee
2024-06-28 19:23:37 +01:00
parent 107ec43149
commit dc18c9fe7a
3 changed files with 2 additions and 6 deletions

View File

@ -23,7 +23,7 @@ public class GuildSubCommand extends BatSubCommand {
ImageProxy banner = guild.getDiscordGuild().getBanner();
if (banner == null) {
interaction.replyEmbeds(EmbedUtils.errorEmbed()
.setDescription("%s does not have a banner!".formatted(guild.getName()))
.setDescription("**%s** does not have a banner!".formatted(guild.getName()))
.build())
.queue();
return;

View File

@ -40,7 +40,7 @@ public class UserSubCommand extends BatSubCommand {
ImageProxy banner = target.retrieveProfile().complete().getBanner();
if (banner == null) {
interaction.replyEmbeds(EmbedUtils.errorEmbed()
.setDescription("%s does not have a banner!".formatted(target.getName()))
.setDescription("**%s** does not have a banner!".formatted(target.getName()))
.build())
.queue();
return;