Files
xiao/commands/single-res/spam.js
T
dragonfire535 a006a8a8de Lots of changes
2017-10-07 11:18:08 -04:00

18 lines
396 B
JavaScript

const { Command } = require('discord.js-commando');
module.exports = class SpamCommand extends Command {
constructor(client) {
super(client, {
name: 'spam',
group: 'single-res',
memberName: 'spam',
description: 'Responds with a picture of Spam.',
clientPermissions: ['ATTACH_FILES']
});
}
run(msg) {
return msg.say({ files: ['https://i.imgur.com/Az9IrXY.jpg'] });
}
};