Files
xiao/commands/single/eat-pant.js
T
Daniel Odendahl Jr b6afded306 Updates
2017-11-09 00:02:59 +00:00

18 lines
380 B
JavaScript

const { Command } = require('discord.js-commando');
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'] });
}
};