From e083c5799959dda91ff31cc0a00d96d02c2565e0 Mon Sep 17 00:00:00 2001 From: rhearmas <34490428+qu-ota@users.noreply.github.com> Date: Fri, 20 Dec 2019 18:13:47 -0500 Subject: [PATCH] YAY OMG WE FIXED ITTTTTT --- commands/Utility/getrandom.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/Utility/getrandom.js b/commands/Utility/getrandom.js index f5ecf2e..758227d 100644 --- a/commands/Utility/getrandom.js +++ b/commands/Utility/getrandom.js @@ -17,7 +17,7 @@ exports.run = async (client, message, args, level) => { return; } - let limit = 5; + let limit = 1; if(args[3]) { limit = args[3]; } @@ -117,7 +117,7 @@ exports.run = async (client, message, args, level) => { for(cidx in chosen) { let theChose = chosen[cidx]; - out.push(theChose.user.tag); + out.push(`${theChose.user.tag} (${theChose.user})`); } message.channel.send(`**I've selected these people:**\n${out.join("\n")}${eout.length < 1 ? '' : `\n\n**Excluded from drawing:**\n${eout.join("\n")}`}`);