Skip to content
Snippets Groups Projects
Commit 3e562935 authored by brickode's avatar brickode
Browse files

Minor fixes

parent 16303cfb
No related branches found
No related tags found
1 merge request!7243Children Report Rework
......@@ -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(' ');
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment