From 2d9b685c08715f385887370d7fee6f482683362d Mon Sep 17 00:00:00 2001 From: TehZombiJesus <81379135+TehZombiJesus@users.noreply.github.com> Date: Fri, 16 Sep 2022 14:31:01 -0400 Subject: [PATCH] Update FeedbackCommand.java --- .../TechDiscordBot/module/cmds/FeedbackCommand.java | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/main/java/me/TechsCode/TechDiscordBot/module/cmds/FeedbackCommand.java b/src/main/java/me/TechsCode/TechDiscordBot/module/cmds/FeedbackCommand.java index 4fbc4885..054dadaf 100644 --- a/src/main/java/me/TechsCode/TechDiscordBot/module/cmds/FeedbackCommand.java +++ b/src/main/java/me/TechsCode/TechDiscordBot/module/cmds/FeedbackCommand.java @@ -2,6 +2,7 @@ import me.TechsCode.TechDiscordBot.TechDiscordBot; import me.TechsCode.TechDiscordBot.module.CommandModule; +import me.TechsCode.TechDiscordBot.util.TechEmbedBuilder; import net.dv8tion.jda.api.entities.Member; import net.dv8tion.jda.api.entities.TextChannel; import net.dv8tion.jda.api.events.interaction.SlashCommandEvent; @@ -39,6 +40,10 @@ public int getCooldown() { @Override public void onCommand(TextChannel channel, Member m, SlashCommandEvent e) { - e.reply("https://github.com/TechsCode-Team/Feedback/discussions").queue(); + e.replyEmbeds(new TechEmbedBuilder("Feedback") + .success() + .text("For suggestions, <#1020188847461629972>.\n" + "For Bug Reports, <#1020188935953076244>.\n" + "For Enhancements, <#1020189010406150204>.") + .build() + ).queue(); } -} +} \ No newline at end of file