diff --git a/commands/single-res/isnt-joke.js b/commands/single-res/isnt-joke.js new file mode 100644 index 00000000..56a42cd0 --- /dev/null +++ b/commands/single-res/isnt-joke.js @@ -0,0 +1,18 @@ +const { Command } = require('discord.js-commando'); + +module.exports = class ItsJokeCommand extends Command { + constructor(client) { + super(client, { + name: 'isnt-joke', + aliases: ['its-not-joke'], + group: 'single-res', + memberName: 'isnt-joke', + description: 'Isn\'t joke...', + clientPermissions: ['ATTACH_FILES'] + }); + } + + run(msg) { + return msg.say({ files: ['https://i.imgur.com/QdDAeZF.jpg'] }); + } +}; diff --git a/commands/single-res/its-joke.js b/commands/single-res/its-joke.js index d0b1b846..60e37ab9 100644 --- a/commands/single-res/its-joke.js +++ b/commands/single-res/its-joke.js @@ -4,6 +4,7 @@ module.exports = class ItsJokeCommand extends Command { constructor(client) { super(client, { name: 'its-joke', + aliases: ['is-joke'], group: 'single-res', memberName: 'its-joke', description: 'It\'s joke!', diff --git a/package.json b/package.json index f28507b1..d20d9086 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiaobot", - "version": "47.5.1", + "version": "47.6.0", "description": "Your personal server companion.", "main": "Shard.js", "scripts": {