From 471818595e32787b79b867c9ba0899902820e4a2 Mon Sep 17 00:00:00 2001
From: lowercasedonkey <lowercasedonkey@gmail.com>
Date: Thu, 5 Nov 2020 20:32:28 -0500
Subject: [PATCH] paren

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

diff --git a/src/endWeek/reports/dairyReport.js b/src/endWeek/reports/dairyReport.js
index 6450fafb4ec..9a2830d527a 100644
--- a/src/endWeek/reports/dairyReport.js
+++ b/src/endWeek/reports/dairyReport.js
@@ -524,18 +524,18 @@ App.EndWeek.dairyReport = function() {
 		}
 		if (slave.health.condition < -80) {
 			improveCondition(slave, 20);
-		} else if ((slave.health.condition < -40)) {
+		} else if (slave.health.condition < -40) {
 			improveCondition(slave, 10);
-		} else if ((slave.health.condition < 0)) {
+		} else if (slave.health.condition < 0) {
 			improveCondition(slave, 7);
-		} else if ((slave.health.condition < 90)) {
+		} else if (slave.health.condition < 90) {
 			improveCondition(slave, 3);
 		}
 		if (slave.inflation > 0) {
 			deflate(slave);
 		}
 		const _gigantomastiaMod = slave.geneticQuirks.gigantomastia === 2 ? (slave.geneticQuirks.macromastia === 2 ? 3 : 2) : 1;
-		if ((slave.lactation > 0) && ((V.dairySlimMaintain === 0) || (slave.boobs > 700))) {
+		if ((slave.lactation > 0) && (V.dairySlimMaintain === 0 || (slave.boobs > 700))) {
 			if (slave.boobs < 2000) {
 				_growth = 100;
 			} else if ((slave.boobs < 5000 * _gigantomastiaMod)) {
-- 
GitLab