This commit is contained in:
Dragon Fire
2020-06-12 14:20:38 -04:00
parent 0f2925700f
commit fbd4e3a34a
+1 -1
View File
@@ -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)}`);
}
};