mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-04 15:56:52 +02:00
18 lines
383 B
JavaScript
18 lines
383 B
JavaScript
const Command = require('../../structures/Command');
|
|
|
|
module.exports = class ItsJokeCommand extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'its-joke',
|
|
group: 'random',
|
|
memberName: 'its-joke',
|
|
description: 'It\'s joke!',
|
|
clientPermissions: ['ATTACH_FILES']
|
|
});
|
|
}
|
|
|
|
run(msg) {
|
|
return msg.say({ files: ['https://i.imgur.com/Gmsx9Ma.jpg'] });
|
|
}
|
|
};
|