diff --git a/commands/misc/ask.js b/commands/misc/ask.js index a487084..006c633 100644 --- a/commands/misc/ask.js +++ b/commands/misc/ask.js @@ -6,7 +6,7 @@ module.exports = { execute({message, args}) { let answer = ""; if(args.length > 2 && args.includes("or")){ - let question = args.join(" ").split("or "); + let question = args.join(" ").split(" or "); answer = question[randomNumber(0, question.length -1)]; } if(answer === "")