diff --git a/src/main/java/wtf/beatrice/hidekobot/commands/slash/ClearChatCommand.java b/src/main/java/wtf/beatrice/hidekobot/commands/slash/ClearChatCommand.java index fe5fb9d..ff92bf5 100644 --- a/src/main/java/wtf/beatrice/hidekobot/commands/slash/ClearChatCommand.java +++ b/src/main/java/wtf/beatrice/hidekobot/commands/slash/ClearChatCommand.java @@ -145,7 +145,8 @@ public class ClearChatCommand } - Button dismissButton = Button.danger("clear_dismiss", "Dismiss").withEmoji(Emoji.fromUnicode("❌")); + Button dismissButton = Button.primary("clear_dismiss", "Dismiss") + .withEmoji(Emoji.fromUnicode("❌")); WebhookMessageEditAction webhookMessageEditAction; diff --git a/src/main/java/wtf/beatrice/hidekobot/commands/slash/SayCommand.java b/src/main/java/wtf/beatrice/hidekobot/commands/slash/SayCommand.java index 560fc0d..2011dae 100644 --- a/src/main/java/wtf/beatrice/hidekobot/commands/slash/SayCommand.java +++ b/src/main/java/wtf/beatrice/hidekobot/commands/slash/SayCommand.java @@ -22,14 +22,14 @@ public class SayCommand if(textOption == null || messageContent.isEmpty()) { - event.reply("Hey, you have to tell me what to say!") + event.reply("\uD83D\uDE20 Hey, you have to tell me what to say!") .setEphemeral(true) .queue(); return; } channel.sendMessage(messageContent).queue(); - event.reply("Message sent!") + event.reply("Message sent! ✨") .setEphemeral(true) .queue(); }