From c0f4f5736f4aea837355dc7878d33546224b405e Mon Sep 17 00:00:00 2001
From: Svornost <11434-svornost@users.noreply.gitgud.io>
Date: Sat, 27 Feb 2021 23:28:51 -0800
Subject: [PATCH] catgirl child description fixes

---
 src/npc/children/longChildDescription.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/npc/children/longChildDescription.js b/src/npc/children/longChildDescription.js
index 831da4c968d..e56d81b684d 100644
--- a/src/npc/children/longChildDescription.js
+++ b/src/npc/children/longChildDescription.js
@@ -18,8 +18,8 @@ App.Facilities.Nursery.LongChildDescription = function(child, {market = 0, event
 		he, him, his, hers, himself, boy, He, His, girl
 	} = getPronouns(child);
 
-	const skintype = (slave.race === "catgirl") ? "skin" : "fur"
-	const freckled = (slave.race === "catgirl") ? "freckled" : "spotted"
+	const skintype = (child.race === "catgirl") ? "skin" : "fur";
+	const freckled = (child.race === "catgirl") ? "freckled" : "spotted";
 
 	// helper functions
 	function accent(child) {
-- 
GitLab