Flummi = doof

This commit is contained in:
Flummi 2017-03-22 01:48:00 +01:00
parent aaf49d6ca7
commit 3ce187279b

View File

@ -14,9 +14,9 @@ module.exports = (lib) => {
for(let i = 0; i < args.length; i++) {
let name = args[0];
if(name.charAt(0) === "!")
params.not.add(name.slice(1));
params.not.push(name.slice(1));
else
params.in.add(name);
params.in.push(name);
}
let query = "select `id`,`username` from `f0ck`.`items` ";