From 05f157e2f39691383609f352a5d5eb37999a7865 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Fri, 22 Sep 2017 17:50:20 +0000 Subject: [PATCH] Bleh --- commands/random/coolness.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/random/coolness.js b/commands/random/coolness.js index 479f9ae0..019be184 100644 --- a/commands/random/coolness.js +++ b/commands/random/coolness.js @@ -20,7 +20,7 @@ module.exports = class CoolnessCommand extends Command { run(msg, { user }) { if (!user) user = msg.author; - const coolness = msg.author.id / this.client.user.id; + const coolness = user.id / this.client.user.id; const prefix = user.id === msg.author.id ? 'You\'re' : 'They\'re'; if (coolness < 0.3) return msg.reply(`${prefix} the coolest being to walk this Earth.`); if (coolness < 0.5) return msg.reply(`${prefix} an extremely cool dude.`);