diff --git a/assets/images/fly/blank.png b/assets/images/fly.png similarity index 100% rename from assets/images/fly/blank.png rename to assets/images/fly.png diff --git a/assets/images/fly/default.png b/assets/images/fly/default.png deleted file mode 100644 index 5ba70059..00000000 Binary files a/assets/images/fly/default.png and /dev/null differ diff --git a/commands/single/fly.js b/commands/single/fly.js index 87ba83e0..b29d9f31 100644 --- a/commands/single/fly.js +++ b/commands/single/fly.js @@ -1,7 +1,5 @@ const Command = require('../../structures/Command'); const path = require('path'); -const { list } = require('../../util/Util'); -const types = ['default', 'blank']; module.exports = class FlyCommand extends Command { constructor(client) { @@ -10,22 +8,11 @@ module.exports = class FlyCommand extends Command { group: 'single', memberName: 'fly', description: 'Sends a fake fly that looks surprisngly real.', - details: `**Types:** ${types.join(', ')}`, - clientPermissions: ['ATTACH_FILES'], - args: [ - { - key: 'type', - prompt: `What type of meme do you want to use? Either ${list(types, 'or')}.`, - type: 'string', - default: 'default', - oneOf: types, - parse: type => type.toLowerCase() - } - ] + clientPermissions: ['ATTACH_FILES'] }); } - run(msg, { type }) { - return msg.say({ files: [path.join(__dirname, '..', '..', 'assets', 'images', 'fly', `${type}.png`)] }); + run(msg) { + return msg.say({ files: [path.join(__dirname, '..', '..', 'assets', 'images', 'fly.png')] }); } }; diff --git a/package.json b/package.json index 99972c4b..58def899 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "114.1.1", + "version": "114.1.2", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": {