From 0c86e1d78637ac121315c9c509ae9ad6461d351c Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Fri, 22 Sep 2017 17:52:10 +0000 Subject: [PATCH] WORK --- commands/random/coolness.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/random/coolness.js b/commands/random/coolness.js index 019be184..51a93e03 100644 --- a/commands/random/coolness.js +++ b/commands/random/coolness.js @@ -26,7 +26,7 @@ module.exports = class CoolnessCommand extends Command { 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.`); if (coolness < 1) return msg.reply(`${prefix} okay, nothing special.`); - if (coolness < 1.3) return msg.say(`${prefix} just not all that neat.`); - return msg.say(`${prefix} awful, honestly.`); + if (coolness < 1.3) return msg.reply(`${prefix} just not all that neat.`); + return msg.reply(`${prefix} awful, honestly.`); } };