From 8f6d223f4b056ad949fc705f43717ffd366d8d9a Mon Sep 17 00:00:00 2001
From: lowercasedonkey <lowercasedonkey@gmail.com>
Date: Thu, 5 Nov 2020 19:28:36 -0500
Subject: [PATCH] comas

---
 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 2d1e3544d9b..138b3369e95 100644
--- a/src/endWeek/reports/dairyReport.js
+++ b/src/endWeek/reports/dairyReport.js
@@ -1225,7 +1225,7 @@ App.EndWeek.dairyReport = function() {
 	}
 	r.push(`${_dairyNameCaps} produced ${commaNum(_milkWeek + _outputMilk)} liters of milk`);
 	if (_cumWeek > 0) {
-		r.push(`and ${_cumWeek + _outputCum} liters of cum`);
+		r.push(`and ${commaNum(_cumWeek + _outputCum)} liters of cum`);
 	}
 	r.push(`this week.`);
 	if (_inflatedSlaves.milk > 0) {
@@ -1233,7 +1233,7 @@ App.EndWeek.dairyReport = function() {
 	}
 	if (_inflatedSlaves.cum > 0) {
 		if (_inflatedSlaves.milk > 0) {
-			r.push(`and `);
+			r.push(`and`);
 		}
 		r.push(`${commaNum(_outputCum)} liters of cum were pumped into your penthouse`);
 		if (_inflatedSlaves.milk > 0) {
@@ -1293,7 +1293,7 @@ App.EndWeek.dairyReport = function() {
 	if (_profits > 0) {
 		r.push(`The sale of these products makes a profit of <span class="yellowgreen">${cashFormat(_profits)}.</span>`);
 	} else if ((_profits < 0)) {
-		r.push(`Due to `);
+		r.push(`Due to`);
 		if (V.dairyImplantsSetting !== 3) {
 			r.push(`one-off costs of hormonal implants to encourage fluid production,`);
 		} else {
@@ -1301,7 +1301,7 @@ App.EndWeek.dairyReport = function() {
 		}
 		r.push(`your dairy made a loss of <span class="red">${cashFormat(_profits)}.</span>`);
 	} else {
-		r.push(`Due to `);
+		r.push(`Due to`);
 		if (V.dairyImplantsSetting !== 3) {
 			r.push(`one-off costs of hormonal implants to encourage fluid production`);
 		} else {
-- 
GitLab