const Command = require('../../structures/Command'); const path = require('path'); module.exports = class SpamCommand extends Command { constructor(client) { super(client, { name: 'spam', group: 'single', memberName: 'spam', description: 'Responds with a picture of Spam.', clientPermissions: ['ATTACH_FILES'], credit: [ { name: 'SPAM Brand', url: 'https://www.spam.com/', reason: 'Image' } ] }); } run(msg) { return msg.say({ files: [path.join(__dirname, '..', '..', 'assets', 'images', 'spam.png')] }); } };