From 4d5672a4afbdff841ee57fbd1b481790a8c14b8b Mon Sep 17 00:00:00 2001
From: Jones <Jones>
Date: Thu, 14 Feb 2019 20:10:26 +0100
Subject: [PATCH] Easy difficulty implemented

---
 src/js/economyJS.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/js/economyJS.js b/src/js/economyJS.js
index d35dda2757a..1ff71a07f7f 100644
--- a/src/js/economyJS.js
+++ b/src/js/economyJS.js
@@ -1173,7 +1173,7 @@ window.repX = function(rep, what, who) {
 
 		//record the action
 		if (typeof V.lastWeeksRepIncome[what] !== 'undefined') {
-			rep = Math.round(Math.pow(1000 * rep + Math.pow(V.rep, 2), 0.5) - V.rep);
+			rep = Math.round(Math.pow(1000 * rep + Math.pow(V.rep, 2), 0.5) - V.rep)* (V.corpEasy + 1);
 			V.lastWeeksRepIncome[what] += rep;
 		} else {
 			V.lastWeeksRepErrors += `Unknown place "${what}" gained you ${rep}<br>`;
-- 
GitLab