From f9134c929b5c4334425fbe91c77befcac54b02c6 Mon Sep 17 00:00:00 2001 From: Braeden57 Date: Sat, 3 Jul 2021 23:04:16 -0700 Subject: [PATCH] Cleanup --- LPS.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/LPS.js b/LPS.js index f1f40aa..c1d354d 100644 --- a/LPS.js +++ b/LPS.js @@ -35,9 +35,8 @@ async function remoteLogin(message, args) { bcrypt.compare(args[1], result.user.password, (err, isMatch) => { if (err) throw err; if (isMatch) { - // Log in data Discord is linked to this email for LPS + // Log in data.json Discord is linked to this email for LPS data.userAcc[message.author] = result.user.email; - console.log(data); return message.author.send(`Logged in as **${result.user.username}** ${message.author}!`); } else { return message.author.send(`Incorrect password for **${args[0]}** ${message.author}!`);