mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-04 07:46:43 +02:00
20 lines
485 B
JavaScript
20 lines
485 B
JavaScript
const Command = require('../../structures/Command');
|
|
const path = require('path');
|
|
|
|
module.exports = class IsntJokeCommand extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'isnt-joke',
|
|
aliases: ['its-not-joke'],
|
|
group: 'single',
|
|
memberName: 'isnt-joke',
|
|
description: 'Isn\'t joke...',
|
|
clientPermissions: ['ATTACH_FILES']
|
|
});
|
|
}
|
|
|
|
run(msg) {
|
|
return msg.say({ files: [path.join(__dirname, '..', '..', 'assets', 'images', 'isnt-joke.png')] });
|
|
}
|
|
};
|