Skip to content

Commit 2d9b685

Browse files
committed
Update FeedbackCommand.java
1 parent 82055e2 commit 2d9b685

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

src/main/java/me/TechsCode/TechDiscordBot/module/cmds/FeedbackCommand.java

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import me.TechsCode.TechDiscordBot.TechDiscordBot;
44
import me.TechsCode.TechDiscordBot.module.CommandModule;
5+
import me.TechsCode.TechDiscordBot.util.TechEmbedBuilder;
56
import net.dv8tion.jda.api.entities.Member;
67
import net.dv8tion.jda.api.entities.TextChannel;
78
import net.dv8tion.jda.api.events.interaction.SlashCommandEvent;
@@ -39,6 +40,10 @@ public int getCooldown() {
3940

4041
@Override
4142
public void onCommand(TextChannel channel, Member m, SlashCommandEvent e) {
42-
e.reply("https://github.com/TechsCode-Team/Feedback/discussions").queue();
43+
e.replyEmbeds(new TechEmbedBuilder("Feedback")
44+
.success()
45+
.text("For suggestions, <#1020188847461629972>.\n" + "For Bug Reports, <#1020188935953076244>.\n" + "For Enhancements, <#1020189010406150204>.")
46+
.build()
47+
).queue();
4348
}
44-
}
49+
}

0 commit comments

Comments
 (0)