Files
xiao/commands/single-res/wynaut.js
T
Daniel Odendahl Jr 586109f402 Wynaut and Pikachu
2017-11-08 02:32:40 +00:00

19 lines
411 B
JavaScript

const { Command } = require('discord.js-commando');
module.exports = class WynautCommand extends Command {
constructor(client) {
super(client, {
name: 'wynaut',
aliases: ['why-not'],
group: 'single-res',
memberName: 'wynaut',
description: 'Why not? Wynaut?',
clientPermissions: ['ATTACH_FILES']
});
}
run(msg) {
return msg.say({ files: ['https://i.imgur.com/6ew9ysx.png'] });
}
};