Fixed misplaced closing bracket in command parser

This commit is contained in:
Essem 2021-07-12 21:56:53 -05:00
parent 74ee8988bf
commit 8059fd1b77
No known key found for this signature in database
GPG Key ID: 7D497397CC3A2A8C
1 changed files with 2 additions and 2 deletions

View File

@ -30,9 +30,9 @@ module.exports = (input) => {
args[arg] = false;
}
if (!ended) curr = arg;
} else {
args[a.slice(2)] = true;
}
} else {
args[a.slice(2)] = true;
}
} else if (curr) {
if (a.endsWith("\"")) {