Remove Blue string

This commit is contained in:
Steven Tracey 2021-09-29 15:01:25 -04:00 committed by GitHub
parent b176854689
commit a4d358f76d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,17 +11,8 @@ public class JangoTheSovietCmd implements ICommand {
@Override
public void handle(CommandContext ctx) {
Random r = new Random();
int max = 2;
int i = r.nextInt(max);
if (i == 0) {
ctx.getChannel().sendTyping().queue();
ctx.getChannel().sendMessage("JOIN THE CSE!").queue();
} else {
ctx.getChannel().sendTyping().queue();
ctx.getChannel().sendMessage("Praise be it thy Spruce").queue();
}
ctx.getChannel().sendTyping().queue();
ctx.getChannel().sendMessage("JOIN THE CSE!").queue();
}
@Override