diff --git a/src/js/economyJS.js b/src/js/economyJS.js index 92b85e412143f76971ee27a22b27ee7a78b41444..612a1529190c88fa7e9717e1d2ab8db60804cd75 100644 --- a/src/js/economyJS.js +++ b/src/js/economyJS.js @@ -1778,7 +1778,7 @@ window.slaveJobValues = function(lowerClassSexDemandRef, middleClassSexDemandRef if (healthPenalty(s) < initialHealthPenalty) { income *= healthPenalty(s) / initialHealthPenalty; } - s.sexQuality = Math.min(Math.trunc((income * 1.2) / s.sexAmount), Math.trunc(V.whoreBudget.topClass * (1 / 3))); // Adjusting the price to the correct sex amount with 20% bonus for being of the highest tier. The top class will pay a maximum of 33% of their weekly budget per service. + s.sexQuality = Math.trunc((income * 1.2) / s.sexAmount); // Adjusting the price to the correct sex amount with 20% bonus for being of the highest tier. The top class will pay a maximum of 33% of their weekly budget per service. slaveJobValues.brothel.topClass += s.sexAmount * s.sexQuality; // Registering the job value in the right slot } else if (s.effectiveWhoreClass === 3) { s.sexAmount = Math.clamp(Math.trunc(s.sexAmount * (2 / 3)), normalRandInt(40, 3), normalRandInt(80, 3)); // Beauty improves use amount between values of aprox. 60 and 120.