diff --git a/src/endWeek/reports/dairyReport.js b/src/endWeek/reports/dairyReport.js index 2d1e3544d9b9a3c75dd40716f6fe165c3b8582f7..138b3369e9578e97d61327bcba3fcead33cd5b36 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 {