diff --git a/src/facilities/nursery/reports/childrenReport.js b/src/facilities/nursery/reports/childrenReport.js index 4a749e45c5cc582a8356d19c2a90f97697796f5b..da805c2e22757eb29eb9e6d92108d456cff46356 100644 --- a/src/facilities/nursery/reports/childrenReport.js +++ b/src/facilities/nursery/reports/childrenReport.js @@ -22,18 +22,17 @@ App.Facilities.Nursery.childrenReport = function childrenReport() { r.push(`<span class="pink">${child.slaveName}</span> is <span class="lime">ready for release.</span> ${He} will be removed from ${V.nurseryName} upon your approach.`); } - // TODO: add Matron and nanny effects if (child.actualAge >= 3) { if (Matron) { - matronFetishEffects(); - matronEducationEffects(); - matronFitnessEffects(); + r.push(matronFetishEffects()); + r.push(matronEducationEffects()); + r.push(matronFitnessEffects()); } if (nannies) { - nannyEducationEffects(); - nannyFitnessEffects(); - nannyFetishEffects(); + r.push(nannyEducationEffects()); + r.push(nannyFitnessEffects()); + r.push(nannyFetishEffects()); } // TODO: add friend / rivalry system @@ -319,5 +318,5 @@ App.Facilities.Nursery.childrenReport = function childrenReport() { return; } - return r; + return r.join(' '); };