From f9d5b70dbe48bde3e47b495fe4f1d403c37886a9 Mon Sep 17 00:00:00 2001 From: SileNce5k Date: Tue, 22 Jun 2021 17:55:05 +0200 Subject: [PATCH] Remove useless console.log() line --- commands/netload.js | 1 - 1 file changed, 1 deletion(-) diff --git a/commands/netload.js b/commands/netload.js index 51975ce..a781cc5 100644 --- a/commands/netload.js +++ b/commands/netload.js @@ -9,7 +9,6 @@ module.exports = { execute({ message, args, prefix, client, owners }) { let json = fs.readFileSync('./data/netmoduleWhitelist.json', 'utf8'); let whitelist = JSON.parse(json) - console.log(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."); return;