Just some updates

This commit is contained in:
Daniel Odendahl Jr
2017-10-20 21:00:08 +00:00
parent bac7e3e6b8
commit 15d5ff0be1
25 changed files with 48 additions and 146 deletions
+2 -2
View File
@@ -38,8 +38,8 @@ module.exports = class GuessMyLooksCommand extends Command {
const extra = extras[Math.floor(Math.random() * extras.length)];
const prefix = user.id === msg.author.id ? 'You' : 'They';
return msg.reply(oneLine`
${prefix} are, I think, a ${age} year old ${gender} with ${eyeColor} eyes and ${hairStyle}
${hairColor} hair. ${prefix} are ${feet}'${inches}" and weigh ${weight} pounds. Don't forget the ${extra}!
${prefix} are, I think, a ${age} year old ${gender} with ${eyeColor} eyes and ${hairStyle} ${hairColor} hair.
${prefix} are ${feet}'${inches}" and weigh ${weight} pounds. Don't forget the ${extra}!
`);
}
};