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

18 lines
381 B
JavaScript

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