correcting strings not part of subcommand

This commit is contained in:
IgnatzHome 2018-05-20 11:27:22 +02:00
parent 1c0c5bde0f
commit ecbb8ef071

View file

@ -172,7 +172,7 @@ class AdvancedFilter {
let start = -1; let start = -1;
for (let i = 0; i < commands.length; i++) for (let i = 0; i < commands.length; i++)
{ {
if (!commands[i].string && commands[i].cmd) if (commands[i].cmd)
{ {
switch (commands[i].cmd) switch (commands[i].cmd)
{ {