slightly better organization
This commit is contained in:
parent
5ffce1dc5b
commit
518185d9c0
@ -26,10 +26,13 @@ public class MessageListener extends ListenerAdapter {
|
|||||||
String msg = message.getContent();
|
String msg = message.getContent();
|
||||||
if (msg.equals(z10b.cmdPrefix)) {
|
if (msg.equals(z10b.cmdPrefix)) {
|
||||||
channel.sendMessage("Fool! Your doing it all wrong. You need an actual command after that.").queue();
|
channel.sendMessage("Fool! Your doing it all wrong. You need an actual command after that.").queue();
|
||||||
} else if (msg.equalsIgnoreCase("ping") || msg.equalsIgnoreCase(z10b.cmdPrefix+"ping")) {
|
} else if (msg.equalsIgnoreCase("ping") || msg.substring(z10b.cmdPrefix.length()).equalsIgnoreCase("ping")) {
|
||||||
channel.sendMessage("pong").queue();
|
channel.sendMessage("pong").queue();
|
||||||
|
|
||||||
} else if (msg.startsWith(z10b.cmdPrefix)) {
|
} else if (msg.startsWith(z10b.cmdPrefix)) {
|
||||||
if (msg.substring(z10b.cmdPrefix.length()).equalsIgnoreCase("roll")) {
|
msg = msg.substring(z10b.cmdPrefix.length());
|
||||||
|
|
||||||
|
if (msg.equalsIgnoreCase("ping")) {
|
||||||
|
|
||||||
int roll = rand.nextInt(6) + 1;
|
int roll = rand.nextInt(6) + 1;
|
||||||
channel.sendMessage("Your roll: " + roll).queue(sentMessage -> {
|
channel.sendMessage("Your roll: " + roll).queue(sentMessage -> {
|
||||||
@ -45,6 +48,8 @@ public class MessageListener extends ListenerAdapter {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
} else if (msg.toLowerCase().contains("polyjet")) {
|
} else if (msg.toLowerCase().contains("polyjet")) {
|
||||||
int msgID = rand.nextInt(5);
|
int msgID = rand.nextInt(5);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user