Fix netload whitelist problems
At least I hope I did 😩
This commit is contained in:
parent
8acdd23aca
commit
dd55112b2c
1 changed files with 2 additions and 1 deletions
|
@ -7,8 +7,9 @@ module.exports = {
|
||||||
name: 'netload',
|
name: 'netload',
|
||||||
description: 'Load a module from the internet',
|
description: 'Load a module from the internet',
|
||||||
execute({ message, args, prefix, client, owners }) {
|
execute({ message, args, prefix, client, owners }) {
|
||||||
const json = fs.readFileSync('netmoduleWhitelist.json', 'utf8');
|
let json = fs.readFileSync('netmoduleWhitelist.json', 'utf8');
|
||||||
let whitelist = JSON.parse(json)
|
let whitelist = JSON.parse(json)
|
||||||
|
console.log(json.indexOf(message.author.id.toString()) == -1)
|
||||||
if (json.indexOf(message.author.id.toString()) == -1) {
|
if (json.indexOf(message.author.id.toString()) == -1) {
|
||||||
message.channel.send("You do not have permissions to use this command.");
|
message.channel.send("You do not have permissions to use this command.");
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Add table
Reference in a new issue