From 89a8b888f11de1b672d0b6e7fa437d81b3d28fea Mon Sep 17 00:00:00 2001
From: lowercasedonkey <lowercasedonkey@gmail.com>
Date: Thu, 5 Nov 2020 19:27:18 -0500
Subject: [PATCH] commas

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

diff --git a/src/endWeek/reports/dairyReport.js b/src/endWeek/reports/dairyReport.js
index cf0891587f4..2d1e3544d9b 100644
--- a/src/endWeek/reports/dairyReport.js
+++ b/src/endWeek/reports/dairyReport.js
@@ -1223,19 +1223,19 @@ App.EndWeek.dairyReport = function() {
 	} else {
 		_outputCum = 0;
 	}
-	r.push(`${_dairyNameCaps} produced ${_milkWeek + _outputMilk} liters of milk`);
+	r.push(`${_dairyNameCaps} produced ${commaNum(_milkWeek + _outputMilk)} liters of milk`);
 	if (_cumWeek > 0) {
 		r.push(`and ${_cumWeek + _outputCum} liters of cum`);
 	}
 	r.push(`this week.`);
 	if (_inflatedSlaves.milk > 0) {
-		r.push(`${_outputMilk} liters of milk were pumped into your penthouse for filling slaves this week.`);
+		r.push(`${commaNum(_outputMilk)} liters of milk were pumped into your penthouse for filling slaves this week.`);
 	}
 	if (_inflatedSlaves.cum > 0) {
 		if (_inflatedSlaves.milk > 0) {
 			r.push(`and `);
 		}
-		r.push(`${_outputCum} liters of cum were pumped into your penthouse`);
+		r.push(`${commaNum(_outputCum)} liters of cum were pumped into your penthouse`);
 		if (_inflatedSlaves.milk > 0) {
 			r.push(`as well.`);
 		} else {
@@ -1243,7 +1243,7 @@ App.EndWeek.dairyReport = function() {
 		}
 	}
 	if (_femCumWeek > 0) {
-		r.push(`The machines also managed to reclaim ${_femCumWeek} liters of salable vaginal secretions.`);
+		r.push(`The machines also managed to reclaim ${commaNum(_femCumWeek)} liters of salable vaginal secretions.`);
 	}
 	if (_births > 1) {
 		r.push(`Additionally, ${_birthers} cows gave birth`);
@@ -1365,11 +1365,11 @@ App.EndWeek.dairyReport = function() {
 				}
 				r.push(`body, and mind have been completely adapted to synthesize useful products. ${He} has been reclassified as part of the machine ${he}'s now permanently attached to. This combination is projected to produce approximately`);
 				if (slave.balls > 0) {
-					r.push(1000 * Math.trunc((_BF[_gender].cum * _ageInWeeks) / 1000));
+					r.push(commaNum(1000 * Math.trunc((_BF[_gender].cum * _ageInWeeks) / 1000)));
 					r.push(`liters of cum,`);
 				}
 				if (slave.ovaries === 1) {
-					r.push(100 * Math.trunc((_BF[_gender].femCum * _ageInWeeks) / 100));
+					r.push(commaNum(100 * Math.trunc((_BF[_gender].femCum * _ageInWeeks) / 100)));
 					r.push(`liters of vaginal secretions,`);
 					if (V.dairyPregSetting === 3) {
 						r.push(13 * (V.retirementAge - slave.physicalAge));
@@ -1379,7 +1379,7 @@ App.EndWeek.dairyReport = function() {
 					r.push(`slaves,`);
 				}
 				r.push(`and`);
-				r.push(1000 * Math.trunc((_BF[_gender].milk * _ageInWeeks) / 1000));
+				r.push(commaNum(1000 * Math.trunc((_BF[_gender].milk * _ageInWeeks) / 1000)));
 				r.push(`liters of milk over a`);
 				r.push(V.retirementAge - slave.physicalAge);
 				r.push(`year period before its biological components must be replaced.`);
-- 
GitLab