diff --git a/src/endWeek/saWorkTheFarm.js b/src/endWeek/saWorkTheFarm.js index 1c3795cab0012874a8ae50fe9cd0bf09f202ec7e..639efbbb14ff2e564ab781b715f9a21e50aab983 100644 --- a/src/endWeek/saWorkTheFarm.js +++ b/src/endWeek/saWorkTheFarm.js @@ -28,7 +28,9 @@ App.SlaveAssignment.workTheFarm = function(slave) { r.push(sight(slave)); r.push(hearing(slave)); - t += V.foodMarket ? `As a result, ${he} produces <span class="chocolate">${massFormat(food)}</span> of food over the week. ` : ``; + if (V.foodMarket) { + r.push(`As a result, ${he} produces <span class="chocolate">${massFormat(food)}</span> of food over the week.`); + } }; const intro = () => `works as a farmhand this week.`;