From 8b132c37a040b50de14cc90a79127e094480b816 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Sun, 6 Sep 2020 21:10:28 -0400 Subject: [PATCH] Disable NB automod vote decrease --- src/routes/postSkipSegments.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/postSkipSegments.js b/src/routes/postSkipSegments.js index 55857be..e3f94e9 100644 --- a/src/routes/postSkipSegments.js +++ b/src/routes/postSkipSegments.js @@ -296,7 +296,7 @@ module.exports = async function postSkipSegments(req, res) { let autoModerateResult = await autoModerateSubmission({userID, videoID, startTime, endTime, category: segments[i].category}); if (autoModerateResult == "NB disagreement."){ // If NB automod rejects, the submission will start with -2 votes - decreaseVotes = -2; + //decreaseVotes = -2; //Disable for now } else if (autoModerateResult) { //Normal automod behavior res.status(403).send("Request rejected by auto moderator: " + autoModerateResult + " If this is an issue, send a message on Discord.");