summaryrefslogtreecommitdiff
path: root/src/main/java/com/redstoner/modules/discord
diff options
context:
space:
mode:
authorMinenash <minenash@protonmail.com>2018-11-07 20:42:54 -0500
committerMinenash <minenash@protonmail.com>2018-11-07 20:42:54 -0500
commit88af596744108030dc302cd02cb02663ca3fc139 (patch)
tree9fe9dbbe19af54c0b0a6ccde71fd0b1ed6b3acb7 /src/main/java/com/redstoner/modules/discord
parent994e6da8388838b2d63814decb28757c113c928c (diff)
Fixed discord random key error math, and updated message.
Diffstat (limited to 'src/main/java/com/redstoner/modules/discord')
-rw-r--r--src/main/java/com/redstoner/modules/discord/Discord.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main/java/com/redstoner/modules/discord/Discord.java b/src/main/java/com/redstoner/modules/discord/Discord.java
index 57bc725..8a7e265 100644
--- a/src/main/java/com/redstoner/modules/discord/Discord.java
+++ b/src/main/java/com/redstoner/modules/discord/Discord.java
@@ -87,9 +87,8 @@ public class Discord implements Module {
}
if (token == null) {
- // Someone please check my math and remove this comment lmao
new Message(sender, null).appendText(
- "\n&4Could not find an unused token in 10 tries (a 1 in 2.462267087×10^143 chance)! Please try running this command again!")
+ "\n&4Could not find an unused token in 10 tries (a 1 in over 20 trillion chance)! Please take a screenshot and run the command again!")
.send();
return;
}