Skip to content

Commit 80479db

Browse files
committed
Removed Unused Embeds
1 parent bb4b390 commit 80479db

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

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

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -76,20 +76,11 @@ public void onCommand(TextChannel channel, Member m, SlashCommandEvent e) {
7676
public void showAll() {
7777
showInfo();
7878
showFeedback();
79-
//showRules();
8079
showPlugins();
81-
//showVerify();
8280
showPatreon();
8381
showInvite();
8482
}
8583

86-
public void showVerify() {
87-
new TechEmbedBuilder("Verify Yourself")
88-
.text("Due to the recent bot attack, you're now required to verify yourself, to do so, all you have to do is react to the message below!")
89-
.thumbnail("https://www.groovypost.com/wp-content/uploads/2016/11/500px-Icon_robot.svg_.png")
90-
.queue(OVERVIEW_CHANNEL.query().first(), msg -> msg.addReaction(bot.getEmotes("TechSupport").first()).complete());
91-
}
92-
9384
// @SubscribeEvent
9485
// public void onReactAdd(GuildMessageReactionAddEvent e) {
9586
// if(e.getChannel() != OVERVIEW_CHANNEL.query().first() || e.getUser().isBot())
@@ -125,13 +116,6 @@ public void showInvite() {
125116
.queue(OVERVIEW_CHANNEL.query().first());
126117
}
127118

128-
public void showRules() {
129-
new TechEmbedBuilder("Rules")
130-
.text("Just use common sense. Also, do not mention people for absolutely no reason.\n\nIf a staff member gives you a warning, kick, or ban, do not argue about it, and simply don't do the thing you were warned about again! Staff decide what they think is right or wrong.\n\n**The staff's decisions are final.**")
131-
.thumbnail("https://static.thenounproject.com/png/358077-200.png")
132-
.queue(OVERVIEW_CHANNEL.query().first());
133-
}
134-
135119
public void showPlugins() {
136120
Arrays.stream(Plugin.values()).forEach(plugin -> new TechEmbedBuilder(plugin.getRoleName())
137121
.text((plugin.getDescription().replace(" (", ". (") + (plugin.getDescription().endsWith(".") || plugin.getDescription().endsWith(")") ? "" : ".")))

0 commit comments

Comments
 (0)