Flummi = doof
This commit is contained in:
parent
f7f2f6d7ed
commit
aaf49d6ca7
|
@ -11,8 +11,13 @@ module.exports = (lib) => {
|
||||||
"not": []
|
"not": []
|
||||||
};
|
};
|
||||||
|
|
||||||
for(let i = 0; i < args.length; i++)
|
for(let i = 0; i < args.length; i++) {
|
||||||
params[(args[i].charAt(0) === "!"?"not":"in")].push(args[i].replace("!"));
|
let name = args[0];
|
||||||
|
if(name.charAt(0) === "!")
|
||||||
|
params.not.add(name.slice(1));
|
||||||
|
else
|
||||||
|
params.in.add(name);
|
||||||
|
}
|
||||||
|
|
||||||
let query = "select `id`,`username` from `f0ck`.`items` ";
|
let query = "select `id`,`username` from `f0ck`.`items` ";
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user