diff --git a/commands/fun/trivia.js b/commands/fun/trivia.js index b06720e..b9fed4a 100644 --- a/commands/fun/trivia.js +++ b/commands/fun/trivia.js @@ -29,7 +29,7 @@ module.exports = { if (!triviaQuestion || Date.now() - lastApiCall >= API_INTERVAL) { // Fetch a new trivia question from OTDB const response = await axios.get( - "https://opentdb.com/api.php?amount=1&category=15&type=multiple" // Category 15 is for Video Games + "https://opentdb.com/api.php?amount=1&category=15" // Category 15 is for Video Games ); triviaQuestion = response.data.results[0];