diff --git a/commands/random-res/would-you-rather.js b/commands/random-res/would-you-rather.js index e05049fc..9f4a99c2 100644 --- a/commands/random-res/would-you-rather.js +++ b/commands/random-res/would-you-rather.js @@ -32,6 +32,6 @@ module.exports = class WouldYouRatherCommand extends Command { async fetchScenario(nsfw) { const { body } = await request.get('https://www.rrrather.com/botapi'); if (body.nsfw && !nsfw) return this.fetchScenario(nsfw); - return body; + return body; } };