From ab2166d5770f7efc1e37c52390f89f5b762d9334 Mon Sep 17 00:00:00 2001
From: lowercasedonkey <lowercasedonkey@gmail.com>
Date: Fri, 6 Nov 2020 15:31:23 -0500
Subject: [PATCH] var cleanup

---
 src/endWeek/reports/dairyReport.js | 18 ++++++++----------
 1 file changed, 8 insertions(+), 10 deletions(-)

diff --git a/src/endWeek/reports/dairyReport.js b/src/endWeek/reports/dairyReport.js
index 4ae14e08276..0cc681e850a 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`);
-- 
GitLab