From ceaca8da751aa3bd3739453f2d26aea0cb9ee452 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Wed, 30 May 2018 12:06:49 +0000 Subject: [PATCH] This might work better --- structures/Command.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/structures/Command.js b/structures/Command.js index 3ebbd5a1..138eaf99 100644 --- a/structures/Command.js +++ b/structures/Command.js @@ -2,10 +2,8 @@ const { Command } = require('discord.js-commando'); class XiaoCommand extends Command { constructor(client) { - super(client, { - argsPromptLimit: 1, - argsSingleQuotes: false - }); + this.argsPromptLimit = 1; + this.argsSingleQuotes = false; } }