Files
xiao/commands/single/eat-pant.js
T
2019-12-22 15:05:05 -05:00

30 lines
689 B
JavaScript

const Command = require('../../structures/Command');
const path = require('path');
module.exports = class EatPantCommand extends Command {
constructor(client) {
super(client, {
name: 'eat-pant',
aliases: ['bort-sampson'],
group: 'single',
memberName: 'eat-pant',
description: 'Eat pant.',
clientPermissions: ['ATTACH_FILES'],
credit: [
{
name: 'u/_Ebb',
url: 'https://www.reddit.com/r/Ooer/comments/52z589/eat_pant_maaaaaaaan/'
},
{
name: 'The Simpsons',
url: 'http://www.simpsonsworld.com/'
}
]
});
}
run(msg) {
return msg.say({ files: [path.join(__dirname, '..', '..', 'assets', 'images', 'eat-pant.png')] });
}
};