From ff122732bf1283a8daea81b94c3cbb37f8b39948 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Thu, 7 May 2020 22:28:27 -0400 Subject: [PATCH] Clean up a little --- commands/random-seed/iq.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/random-seed/iq.js b/commands/random-seed/iq.js index 5e07358b..ba437657 100644 --- a/commands/random-seed/iq.js +++ b/commands/random-seed/iq.js @@ -24,8 +24,8 @@ module.exports = class IQCommand extends Command { const authorUser = user.id === msg.author.id; if (user.id === this.client.user.id) return msg.reply('Me? My IQ score is off the charts!'); if (this.client.isOwner(user)) { - if (authorUser) return msg.reply('Only someone of the highest IQ could make a bot as amazing as me!'); - return msg.reply('My owner? Yeah... Not the sharpest tool in the shed.'); + if (authorUser) return msg.reply('Only someone of the highest IQ could make a bot as amazing as me! ❤'); + return msg.reply(`${user.username}, as in my owner? Yeah... Not the sharpest tool in the shed.`); } const random = MersenneTwister19937.seed(user.id); const score = integer(20, 170)(random);