From 66cd37b613fce2a116b40e614d841f57b6651277 Mon Sep 17 00:00:00 2001
From: DCoded <dcoded@live.com>
Date: Sat, 8 Aug 2020 09:03:54 -0400
Subject: [PATCH] Minor changes

---
 src/endWeek/reports/childrenReport.js | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/src/endWeek/reports/childrenReport.js b/src/endWeek/reports/childrenReport.js
index 47a67ea4ee8..de7d1879681 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. `;
-- 
GitLab