mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-27 14:18:36 +02:00
Remove some commands
This commit is contained in:
@@ -1,26 +0,0 @@
|
||||
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'],
|
||||
url: [
|
||||
{
|
||||
name: 'Love Live! School Idol Project',
|
||||
url: 'http://www.lovelive-anime.jp/',
|
||||
reason: 'Original Anime'
|
||||
}
|
||||
]
|
||||
});
|
||||
}
|
||||
|
||||
run(msg) {
|
||||
return msg.say({ files: [path.join(__dirname, '..', '..', 'assets', 'images', 'isnt-joke.png')] });
|
||||
}
|
||||
};
|
||||
@@ -1,26 +0,0 @@
|
||||
const Command = require('../../structures/Command');
|
||||
const path = require('path');
|
||||
|
||||
module.exports = class ItsJokeCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'its-joke',
|
||||
aliases: ['is-joke'],
|
||||
group: 'single',
|
||||
memberName: 'its-joke',
|
||||
description: 'It\'s joke!',
|
||||
clientPermissions: ['ATTACH_FILES'],
|
||||
url: [
|
||||
{
|
||||
name: 'Love Live! School Idol Project',
|
||||
url: 'http://www.lovelive-anime.jp/',
|
||||
reason: 'Original Anime'
|
||||
}
|
||||
]
|
||||
});
|
||||
}
|
||||
|
||||
run(msg) {
|
||||
return msg.say({ files: [path.join(__dirname, '..', '..', 'assets', 'images', 'its-joke.png')] });
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user