From 1f6acc7425ae2e0464f87db407066f2177d90899 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Fri, 21 May 2021 23:14:02 -0400 Subject: [PATCH] Fix --- commands/games-sp/would-you-rather.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/games-sp/would-you-rather.js b/commands/games-sp/would-you-rather.js index 1e943744..f1ecf068 100644 --- a/commands/games-sp/would-you-rather.js +++ b/commands/games-sp/would-you-rather.js @@ -63,7 +63,7 @@ module.exports = class WouldYouRatherCommand extends Command { } async fetchScenario() { - const { text } = await request.get('http://either.io/questions/next/'); + const { text } = await request.get('http://either.io/questions/next/1'); return JSON.parse(text).questions[0]; }