From 0f18078acebc391fa3b05ac3515470d3cafa502c Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Fri, 22 Sep 2017 18:36:52 +0000 Subject: [PATCH] Fix Eliz's --- commands/random/coolness.js | 1 + 1 file changed, 1 insertion(+) diff --git a/commands/random/coolness.js b/commands/random/coolness.js index 51a93e03..2a329cb6 100644 --- a/commands/random/coolness.js +++ b/commands/random/coolness.js @@ -22,6 +22,7 @@ module.exports = class CoolnessCommand extends Command { if (!user) user = msg.author; const coolness = user.id / this.client.user.id; const prefix = user.id === msg.author.id ? 'You\'re' : 'They\'re'; + if (user.id === '234318196893548545') return msg.reply(`${prefix} the best person ever.`); 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.`); if (coolness < 0.8) return msg.reply(`${prefix} pretty sweet, not gonna lie.`);