diff --git a/src/facilities/nursery/reports/childrenReport.js b/src/facilities/nursery/reports/childrenReport.js
index 5dc0bf6c3f5ea815a138b2e52014f64e7ca4e9ee..df979406e033e3fc7a227989d14f1e7877fa7b58 100644
--- a/src/facilities/nursery/reports/childrenReport.js
+++ b/src/facilities/nursery/reports/childrenReport.js
@@ -3,8 +3,6 @@
  * @returns {string}
  */
 App.Facilities.Nursery.childrenReport = function childrenReport() {
-	"use strict";
-
 	const
 		Matron = V.Matron,
 		NL = App.Entity.facilities.nursery.employeesIDs().size,
@@ -83,7 +81,7 @@ App.Facilities.Nursery.childrenReport = function childrenReport() {
 											r += `is now a buttslut`;
 											break;
 										case "boobs":
-											r += `now has a fetish for boobs and breastplay`;	// TODO: not happy with this wording
+											r += `now has a fetish for all things breast-related`;
 											break;
 										case "sadist":
 											r += `now gets off on causing pain`;
@@ -126,7 +124,7 @@ App.Facilities.Nursery.childrenReport = function childrenReport() {
 											r += `is now a buttslut`;
 											break;
 										case "boobs":
-											r += `now has a fetish for boobs and breastplay`;	// TODO: not happy with this wording
+											r += `now has a fetish for all things breast-related`;
 											break;
 										case "sadist":
 											r += `now gets off on causing pain`;
@@ -147,35 +145,35 @@ App.Facilities.Nursery.childrenReport = function childrenReport() {
 									if (chance > 90) {
 										r += `${child.slaveName} seems to have taken to ${slave.slaveName}'s example, and `;
 										switch (child.fetish) {
-										case "submissive":
-											r += `is now a submissive`;
-											break;
-										case "cumslut":
-											r += `is now a cumslut`;
-											break;
-										case "humiliation":
-											r += `now has a fetish for humiliation`;
-											break;
-										case "buttslut":
-											r += `is now a buttslut`;
-											break;
-										case "boobs":
-											r += `now has a fetish for boobs and breastplay`;	// TODO: not happy with this wording
-											break;
-										case "sadist":
-											r += `now gets off on causing pain`;
-											break;
-										case "masochist":
-											r += `now gets off on pain`;
-											break;
-										case "dom":
-											r += `is now very sexually dominant`;
-											break;
-										case "pregnancy":
-											r += `has developed a facination for all things pregnancy-related`;
-											break;
-									}
-									r += `. `;
+											case "submissive":
+												r += `is now a submissive`;
+												break;
+											case "cumslut":
+												r += `is now a cumslut`;
+												break;
+											case "humiliation":
+												r += `now has a fetish for humiliation`;
+												break;
+											case "buttslut":
+												r += `is now a buttslut`;
+												break;
+											case "boobs":
+												r += `now has a fetish for all things breast-related`;
+												break;
+											case "sadist":
+												r += `now gets off on causing pain`;
+												break;
+											case "masochist":
+												r += `now gets off on pain`;
+												break;
+											case "dom":
+												r += `is now very sexually dominant`;
+												break;
+											case "pregnancy":
+												r += `has developed a facination for all things pregnancy-related`;
+												break;
+										}
+										r += `. `;
 										child.fetish = slave.fetish;
 									}
 								}
@@ -187,8 +185,7 @@ App.Facilities.Nursery.childrenReport = function childrenReport() {
 				// TODO: add education system
 				if (jsDef(Matron) && Matron) {
 					const {
-						// eslint-disable-next-line no-unused-vars
-						he2, him2, his2, hers2, himself2, boy2, He2, His2
+						he2, him2, his2, He2
 					} = getPronouns(Matron).appendSuffix('2');
 
 					if (Matron.intelligence + Matron.intelligenceImplant > 65) {
@@ -282,15 +279,21 @@ App.Facilities.Nursery.childrenReport = function childrenReport() {
 							if (friend > rival) {
 								if (chance > 75) {
 									r += ``;	// TODO:
-									child.relationship = 1, child.relationshipTarget = c.ID;
-									c.relationship = 1, c.relationshipTarget = child.ID;
+									child.relationship = 1;
+									child.relationshipTarget = c.ID;
+
+									c.relationship = 1;
+									c.relationshipTarget = child.ID;
 								}
 							}
 						} else {
 							if (chance > 60) {
 								r += ``;	// TODO:
-								child.relationship = 1, child.relationshipTarget = c.ID;
-								c.relationship = 1, c.relationshipTarget = child.ID;
+								child.relationship = 1;
+								child.relationshipTarget = c.ID;
+
+								c.relationship = 1;
+								c.relationshipTarget = child.ID;
 							}
 						}
 					}