Fix addSpace in getStoppingStrings (unused)

This commit is contained in:
SillyLossy
2023-05-04 20:37:21 +03:00
parent 19a4534d78
commit 0d1ce6fd9a

View File

@ -1181,7 +1181,7 @@ function getStoppingStrings(isImpersonate, addSpace) {
}
}
return addSpace ? result.map(x => `${result} `) : result;
return addSpace ? result.map(x => `${x} `) : result;
}
function processCommands(message, type) {