From 88af596744108030dc302cd02cb02663ca3fc139 Mon Sep 17 00:00:00 2001 From: Minenash Date: Wed, 7 Nov 2018 20:42:54 -0500 Subject: [PATCH] Fixed discord random key error math, and updated message. --- src/main/java/com/redstoner/modules/discord/Discord.java | 3 +-- 1 file changed, 1 insertion(+), 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; }