Files
xiao/commands/single/wynaut.js
T
2018-09-09 15:39:23 +00:00

20 lines
471 B
JavaScript

const Command = require('../../structures/Command');
const path = require('path');
module.exports = class WynautCommand extends Command {
constructor(client) {
super(client, {
name: 'wynaut',
aliases: ['why-not'],
group: 'single',
memberName: 'wynaut',
description: 'Why not? Wynaut?',
clientPermissions: ['ATTACH_FILES']
});
}
run(msg) {
return msg.say({ files: [path.join(__dirname, '..', '..', 'assets', 'images', 'wynaut.png')] });
}
};