Remove stragglers

This commit is contained in:
Daniel Odendahl Jr
2017-11-28 18:30:38 +00:00
parent f4cc089a39
commit 9cd90d84ae
3 changed files with 0 additions and 3 deletions
-1
View File
@@ -28,7 +28,6 @@ module.exports = class YearsCommand extends Command {
}
async run(msg, { user }) {
if (!user) user = msg.author;
const avatarURL = user.displayAvatarURL({ format: 'png', size: 256 });
try {
const base = await loadImage(path.join(__dirname, '..', '..', 'assets', 'images', '3000-years.png'));
-1
View File
@@ -28,7 +28,6 @@ module.exports = class RainbowCommand extends Command {
}
async run(msg, { user }) {
if (!user) user = msg.author;
const avatarURL = user.displayAvatarURL({ format: 'png', size: 512 });
try {
const base = await loadImage(path.join(__dirname, '..', '..', 'assets', 'images', 'rainbow.png'));
-1
View File
@@ -24,7 +24,6 @@ module.exports = class GuessLooksCommand extends Command {
}
run(msg, { user }) {
if (!user) user = msg.author;
const gender = genders[Math.floor(Math.random() * genders.length)];
const eyeColor = eyeColors[Math.floor(Math.random() * eyeColors.length)];
const hairColor = hairColors[Math.floor(Math.random() * hairColors.length)];