mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-04 07:46:43 +02:00
18 lines
393 B
JavaScript
18 lines
393 B
JavaScript
const Command = require('../../structures/Command');
|
|
|
|
module.exports = class SpamCommand extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'spam',
|
|
group: 'random',
|
|
memberName: 'spam',
|
|
description: 'Responds with a picture of Spam.',
|
|
clientPermissions: ['ATTACH_FILES']
|
|
});
|
|
}
|
|
|
|
run(msg) {
|
|
return msg.say({ files: ['https://i.imgur.com/arx7GJV.jpg'] });
|
|
}
|
|
};
|