From a6d1bad395c6af1e2865d98f10553ec9426f451f Mon Sep 17 00:00:00 2001 From: lowercase-donkey <lowercasedonkey@gmail.com> Date: Sat, 16 Feb 2019 09:26:50 -0500 Subject: [PATCH] exempt events from repX --- src/js/economyJS.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/js/economyJS.js b/src/js/economyJS.js index f90c1ca74f0..488b8da88ab 100644 --- a/src/js/economyJS.js +++ b/src/js/economyJS.js @@ -1172,8 +1172,8 @@ window.repX = function(rep, what, who) { } //record the action - if (what === "cheating" || passage() == "init" || passage() == "init Nationalities") { - /*we don't want to curve anything on startup or for cheating.*/ + if (what === "cheating" || what === "event") { + /*we don't want to curve events (including startup) or cheating.*/ V.lastWeeksRepIncome[what] += rep; } else if (typeof V.lastWeeksRepIncome[what] !== 'undefined') { rep = Math.round(Math.pow(1000 * rep + Math.pow(V.rep, 2), 0.5) - V.rep)* (V.corpEasy + 1); -- GitLab