Skip to content

Commit ab80633

Browse files
committed
v.1.0.6, fixing meme review, never added it as an actual command just had the code for it
Signed-off-by: Jake <wvinc.com@gmail.com>
1 parent 1ca0eda commit ab80633

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

src/main/java/commandClasses/Help.java

+5
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,12 @@ public static void Help(IMessage message, IDiscordClient bot) {
2323
"\n/analysis: Sends a command asking Kowalski for an analysis." +
2424
"\n/info: Sends a simplified version of the help text without the command list." +
2525
"\n/coinflip: Flips a coin." +
26+
"\n/HIJ: only can be used in #bot-spam. Spams a meme about Hudson. I'm warming you." +
27+
"\n/DIA: Same as HIJ but with Elijah." +
28+
"\n/hillary: Works like SovietBot's \"purge\" command. Can delete a large amount of messages at once, takes an argument which dictates how many will be deleted." +
2629
"\n/request: Takes original message, echoes it, then adds reaction emojis which can be used to vote on a request or suggestion." +
30+
"\n/memereview: Starts meme review, and pings here." +
31+
"\n/ratememe: Rates the meme, takes any number as long as it's positive." +
2732
"\n[Invite Link](https://discordapp.com/api/oauth2/authorize?client_id=505129765959893013&permissions=8&scope=bot)");
2833
HelpEmbed.withTitle("WackBot");
2934
IUser PMCaller = message.getAuthor();

src/main/java/wackBot/CommandProcessor.java

+4
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,10 @@ public static void processCommand(IMessage message, IDiscordClient bot, String p
5353
Hij.Hij(message);
5454
} else if (command[0].equals("hillary")) {
5555
Hillary.hillary(message);
56+
} else if (command[0].equals("memereview")) {
57+
MemeReview.Dia(message);
58+
} else if (command[0].equals("ratememe")) {
59+
RateMeme.rate(message);
5660
}
5761

5862

0 commit comments

Comments
 (0)