Make minimal text changes
This commit is contained in:
parent
b35b962ac6
commit
5e4e438340
@ -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<Message> webhookMessageEditAction;
|
||||
|
||||
|
@ -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();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user