diff --git a/src/endWeek/reports/dairyReport.js b/src/endWeek/reports/dairyReport.js index 4ae14e08276c45da71677c7627b5d9c103fccebd..0cc681e850ac20ea2b4462ef53c40851331b0915 100644 --- a/src/endWeek/reports/dairyReport.js +++ b/src/endWeek/reports/dairyReport.js @@ -234,9 +234,7 @@ App.EndWeek.dairyReport = function() { S.Milkmaid.devotion += Math.ceil(S.Milkmaid.fetishStrength / 25); S.Milkmaid.fetishStrength += 2; } - const Tmult = (milkmaidImpregnated * 10); - S.Milkmaid.counter.penetrative += Tmult; - V.penetrativeTotal += Tmult; + actX(S.Milkmaid, "penetrative", (milkmaidImpregnated * 10)); S.Milkmaid.need = 0; } if (FLsFetish === 1) { @@ -352,8 +350,8 @@ App.EndWeek.dairyReport = function() { App.Events.addParagraph(el, r); } - const Tadd = (V.bioreactorsXY + V.bioreactorsXX + V.bioreactorsHerm + V.bioreactorsBarren); - if (DL + Tadd > 0) { + const bioreactors = (V.bioreactorsXY + V.bioreactorsXX + V.bioreactorsHerm + V.bioreactorsBarren); + if (DL + bioreactors > 0) { r = []; if (DL !== 1) { r.push(App.UI.DOM.makeElement("span", `There are ${DL} cows in ${V.dairyName}.`, "bold")); @@ -363,8 +361,8 @@ App.EndWeek.dairyReport = function() { if (V.dairyRestraintsSetting > 1) { r.push(`The facility functions as an industrial slave products factory.`); } - if (Tadd > 0) { - r.push(`${Tadd} milking machines have permanent biological components, making a total of ${Tadd + DL} milk-producing bodies.`); + if (bioreactors > 0) { + r.push(`${bioreactors} milking machines have permanent biological components, making a total of ${bioreactors + DL} milk-producing bodies.`); } App.Events.addNode(el, r, "div"); } @@ -1097,7 +1095,7 @@ App.EndWeek.dairyReport = function() { } } - if (Tadd > 0) { + if (bioreactors > 0) { r = []; const tempCash = V.cash; @@ -1134,8 +1132,8 @@ App.EndWeek.dairyReport = function() { cashValue = seed * 9; } cashX(cashValue, "menialBioreactors"); - r.push(`${Tadd} permanently converted biological`); - if (Tadd > 1) { + r.push(`${bioreactors} permanently converted biological`); + if (bioreactors > 1) { r.push(`"machines" produce`); } else { r.push(`"machine" produces`);