Files
xiao/commands/random/eat-pant.js
T
Daniel Odendahl Jr 4c17f97da9 Images, Themes Command
2017-09-27 00:50:57 +00:00

18 lines
380 B
JavaScript

const Command = require('../../structures/Command');
module.exports = class EatPantCommand extends Command {
constructor(client) {
super(client, {
name: 'eat-pant',
group: 'random',
memberName: 'eat-pant',
description: 'eat pant',
clientPermissions: ['ATTACH_FILES']
});
}
run(msg) {
return msg.say({ files: ['https://i.imgur.com/sSmhvxt.jpg'] });
}
};