From fbd4e3a34aa913197ea9fe81dd62244a2087960d Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Fri, 12 Jun 2020 14:20:38 -0400 Subject: [PATCH] Fix lint --- commands/random-seed/thicc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/random-seed/thicc.js b/commands/random-seed/thicc.js index 424593f7..42c88514 100644 --- a/commands/random-seed/thicc.js +++ b/commands/random-seed/thicc.js @@ -36,7 +36,7 @@ module.exports = class ThiccCommand extends Command { const random = MersenneTwister19937.seed(clientAuthor ? msg.author.id : user.id); const length = integer(0, 100)(random); let pronoun = 'They'; - if (user.id === msg.author.id) pronoun = 'You' + if (user.id === msg.author.id) pronoun = 'You'; return msg.reply(`${pronoun} are thi${'c'.repeat(clientAuthor ? length + 1 : length)}`); } };