diff --git a/src/js/economyJS.js b/src/js/economyJS.js
index d35dda2757a28fd330d0fa5230761d15eb5353be..1ff71a07f7fc65e1bd222e0dac5eddb8f4bcbb1c 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>`;