Skip to content

Commit

Permalink
Update FeedbackCommand.java
Browse files Browse the repository at this point in the history
  • Loading branch information
TehZombiJesus committed Sep 16, 2022
1 parent 82055e2 commit 2d9b685
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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();
}
}
}

0 comments on commit 2d9b685

Please sign in to comment.