Files
xiao/commands/single/wynaut.js
T
2018-05-30 12:04:21 +00:00

19 lines
408 B
JavaScript

const Command = require('../../structures/Command');
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: ['https://i.imgur.com/6ew9ysx.png'] });
}
};