diff --git a/README.md b/README.md index e69958a9..8a7d08a7 100644 --- a/README.md +++ b/README.md @@ -316,7 +316,6 @@ Total: 465 * **superpower:** Responds with a random superpower. * **the-onion:** Responds with a random "The Onion" article. * **this-for-that:** So, basically, it's like a bot command for this dumb meme. -* **waifu:** Responds with a randomly generated waifu and backstory. * **will-you-press-the-button:** Responds with a random "Will You Press The Button?" dilemma. * **word:** Responds with a random word. * **would-you-rather:** Responds with a random "Would you rather ...?" question. @@ -343,6 +342,7 @@ Total: 465 * **potato:** Responds with a random potato image. * **shiba:** Responds with a random image of a Shiba Inu. * **shrek:** Responds with a random image of Shrek, the sexiest man alive. +* **waifu:** Responds with a randomly generated waifu and backstory. * **xiao:** Responds with a random image of Xiao Pai. ### Seeded Randomizers: @@ -1284,8 +1284,6 @@ here. * psycho-pass ([Crime Coefficient Levels Data](https://psychopass.fandom.com/wiki/Crime_Coefficient_(Index%27)) - [r/IsTodayFridayThe13th](https://www.reddit.com/r/IsTodayFridayThe13th/) * friday-the-13th (Concept) -- [r/Showerthoughts](https://www.reddit.com/r/showerthoughts) - * shower-thought (Shower Thought Data) - [Random-d.uk](https://random-d.uk/) * duck ([API](https://random-d.uk/api)) * http-duck ([API](https://random-d.uk/http)) diff --git a/commands/random-res/waifu.js b/commands/random-img/waifu.js similarity index 89% rename from commands/random-res/waifu.js rename to commands/random-img/waifu.js index 80641c0a..deabd96e 100644 --- a/commands/random-res/waifu.js +++ b/commands/random-img/waifu.js @@ -8,7 +8,7 @@ module.exports = class WaifuCommand extends Command { super(client, { name: 'waifu', aliases: ['this-waifu-does-not-exist'], - group: 'random-res', + group: 'random-img', memberName: 'waifu', description: 'Responds with a randomly generated waifu and backstory.', clientPermissions: ['EMBED_LINKS'], @@ -27,7 +27,7 @@ module.exports = class WaifuCommand extends Command { const { text } = await request.get(`https://www.thiswaifudoesnotexist.net/snippet-${num}.txt`); const embed = new MessageEmbed() .setDescription(shorten(text, 1000)) - .setThumbnail(`https://www.thiswaifudoesnotexist.net/example-${num}.jpg`); + .setImage(`https://www.thiswaifudoesnotexist.net/example-${num}.jpg`); return msg.embed(embed); } }; diff --git a/commands/random-res/shower-thought.js b/commands/random-res/shower-thought.js index 9909b4e7..952e670d 100644 --- a/commands/random-res/shower-thought.js +++ b/commands/random-res/shower-thought.js @@ -8,14 +8,7 @@ module.exports = class ShowerThoughtCommand extends SubredditCommand { group: 'random-res', memberName: 'shower-thought', description: 'Responds with a random shower thought, directly from r/Showerthoughts.', - subreddit: 'Showerthoughts', - credit: [ - { - name: 'r/Showerthoughts', - url: 'https://www.reddit.com/r/showerthoughts', - reason: 'Shower Thought Data' - } - ] + subreddit: 'Showerthoughts' }); } diff --git a/package.json b/package.json index e862be9c..d0630896 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "116.9.4", + "version": "116.9.5", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": {