From 5e4e4383402339a4c6bdc802b2c217b2f1210f5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beatrice=20Dellac=C3=A0?= Date: Mon, 21 Nov 2022 15:59:27 +0100 Subject: [PATCH] Make minimal text changes --- .../beatrice/hidekobot/commands/slash/ClearChatCommand.java | 3 ++- .../wtf/beatrice/hidekobot/commands/slash/SayCommand.java | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) 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(); }