From ab5ee8288a076d2d6b7eda519fb961f85bcee0d2 Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Fri, 6 Nov 2020 15:37:44 -0500 Subject: [PATCH] fix --- src/endWeek/reports/dairyReport.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/endWeek/reports/dairyReport.js b/src/endWeek/reports/dairyReport.js index af53c8cf5bb..7e2d3a8b31b 100644 --- a/src/endWeek/reports/dairyReport.js +++ b/src/endWeek/reports/dairyReport.js @@ -289,7 +289,7 @@ App.EndWeek.dairyReport = function() { ({ he2, his2 } = getPronouns(slave).appendSuffix("2")); - r.push(`${He} either neglects or harasses ${his} ${rivalryTerm(S.Milkmaid)},${slave.slaveName}, making sure ${he2} is unhappy and uncomfortable.`); + r.push(`${He} either neglects or harasses ${his} ${rivalryTerm(S.Milkmaid)}, ${slave.slaveName}, making sure ${he2} is unhappy and uncomfortable.`); slave.devotion -= 3; slave.trust -= 3; if (random(1, 100) > 65) { @@ -1280,7 +1280,7 @@ App.EndWeek.dairyReport = function() { } else if (births > 0) { r.push(`Additionally, one cow gave birth`); if (births > birthers) { - r.push(`to a total of${births} calves`); + r.push(`to a total of ${births} calves`); } r.push(`this week.`); } -- GitLab