From ad717574cc4bb6231f9277a76b3a31a00fd4fa68 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 7 Jun 2020 21:26:31 -0400 Subject: [PATCH] Fix lint --- commands/random-res/would-you-rather.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } };