diff --git a/src/endWeek/reports/childrenReport.js b/src/endWeek/reports/childrenReport.js index 47a67ea4ee8352571b08a9ea7f272b3ae79a55ac..de7d1879681ad404ee61acd0955bb7bd0de43d13 100644 --- a/src/endWeek/reports/childrenReport.js +++ b/src/endWeek/reports/childrenReport.js @@ -70,12 +70,10 @@ App.Facilities.Nursery.childrenReport = function childrenReport() { child.fetish = Matron.fetish; return `${child.slaveName} has taken a few cues from ${Matron.slaveName}, and ${newChildFetish(child.fetish)}. `; - } else { - if (chance > 95) { - child.fetish = Matron.fetish; + } else if (chance > 95) { + child.fetish = Matron.fetish; - return `${Matron.slaveName} has rubbed off on ${child.slaveName}, in more ways than one. ${He} ${newChildFetish(child.fetish)}. `; - } + return `${Matron.slaveName} has rubbed off on ${child.slaveName}, in more ways than one. ${He} ${newChildFetish(child.fetish)}. `; } } } @@ -91,7 +89,7 @@ App.Facilities.Nursery.childrenReport = function childrenReport() { child.intelligenceImplant += 3; return `${Matron.slaveName} is so intelligent and well-educated that ${he} is able to teach ${theChildren} very effectively, and so ${CL > 1 ? `they gradually grow` : `${child.slaveName} gradually grows`} smarter. `; - } else if (Matron.intelligenceImplant > 30) { + } else if (Matron.intelligenceImplant > 20) { child.intelligenceImplant += 2; return `${Matron.slaveName}'s education makes up for the fact that ${he} isn't the brightest and allows ${him} to teach ${theChildren} quite effectively, and so ${CL > 1 ? `they grow` : `${child.slaveName} grows`} a bit smarter. `;