From 30c8bcb720d55a0094ea8f484df79098b59bbc01 Mon Sep 17 00:00:00 2001
From: kopareigns <kopareigns@gmail.com>
Date: Wed, 26 Sep 2018 20:18:13 -0400
Subject: [PATCH] Fix

---
 devNotes/twine JS.txt                | 2 +-
 src/js/rulesAssistantOptions.tw      | 2 +-
 src/uncategorized/managePenthouse.tw | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt
index aae3348af0b..f80052c74c5 100644
--- a/devNotes/twine JS.txt	
+++ b/devNotes/twine JS.txt	
@@ -15548,7 +15548,7 @@ window.rulesAssistantOptions = (function() {
 			if (V.masterSuite > 0) items.push("Master Suite");
 			if (V.schoolroom > 0) items.push("Schoolroom");
 			if (V.spa > 0) items.push("Spa");
-			if (V.nursery > 0) item.push("Nursery");
+			if (V.nursery > 0) items.push("Nursery");
 			if (V.clinic > 0) items.push("Clinic");
 			if (V.cellblock > 0) items.push("Cellblock");
 			items.forEach(
diff --git a/src/js/rulesAssistantOptions.tw b/src/js/rulesAssistantOptions.tw
index bfc1caa3058..d9ffb383f4d 100644
--- a/src/js/rulesAssistantOptions.tw
+++ b/src/js/rulesAssistantOptions.tw
@@ -784,7 +784,7 @@ window.rulesAssistantOptions = (function() {
 			if (V.masterSuite > 0) items.push("Master Suite");
 			if (V.schoolroom > 0) items.push("Schoolroom");
 			if (V.spa > 0) items.push("Spa");
-			if (V.nursery > 0) item.push("Nursery");
+			if (V.nursery > 0) items.push("Nursery");
 			if (V.clinic > 0) items.push("Clinic");
 			if (V.cellblock > 0) items.push("Cellblock");
 			items.forEach(
diff --git a/src/uncategorized/managePenthouse.tw b/src/uncategorized/managePenthouse.tw
index c782d99037a..b95652b9b19 100644
--- a/src/uncategorized/managePenthouse.tw
+++ b/src/uncategorized/managePenthouse.tw
@@ -76,7 +76,7 @@ __Penthouse Facilities__
 
 <<if $cheatMode == 1>>
 	<<if $nursery == 0>>
-		[[Build a nursery to raise chilren from birth|Manage Penthouse][$cash -= Math.trunc(5000*$upgradeMultiplierArcology), $nursery = 5, $PC.engineering += 1]] @@.red;ALPHA CONTENT@@
+		[[Build a nursery to raise children from birth|Manage Penthouse][$cash -= Math.trunc(5000*$upgradeMultiplierArcology), $nursery = 5, $PC.engineering += 1]] @@.red;ALPHA CONTENT@@
 		//Costs <<print cashFormat(Math.trunc(5000*$upgradeMultiplierArcology))>>//
 	<<else>>
 		The penthouse has a nursery built where infants can be brought up.
-- 
GitLab