diff --git a/commands/random/rate.js b/commands/random/rate.js index 8fac63c2..e948cbf4 100644 --- a/commands/random/rate.js +++ b/commands/random/rate.js @@ -11,7 +11,7 @@ module.exports = class RateCommand extends Command { args: [ { key: 'thing', - prompt: 'Who do you want to rate?', + prompt: 'What do you want to rate?', type: 'string', max: 1950 } diff --git a/commands/random/waifu.js b/commands/random/waifu.js index d897d852..b948b2bf 100644 --- a/commands/random/waifu.js +++ b/commands/random/waifu.js @@ -17,7 +17,7 @@ module.exports = class WaifuCommand extends Command { const waifuKeys = Object.keys(waifus); const waifu = waifuKeys[Math.floor(Math.random() * waifuKeys.length)]; try { - const waifuImage = await randomFromImgurAlbum(waifu); + const waifuImage = await randomFromImgurAlbum(waifus[waifu]); return msg.say(waifu, { files: [waifuImage] }); } catch (err) { return msg.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`); diff --git a/package.json b/package.json index b2550a55..f376ac72 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "77.0.0", + "version": "77.0.1", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": {