From 1e6e88e9500134711a7f63b55c614874b59b9d00 Mon Sep 17 00:00:00 2001
From: lowercasedonkey <lowercasedonkey@gmail.com>
Date: Mon, 2 Nov 2020 00:58:57 -0500
Subject: [PATCH] int depend fix

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

diff --git a/src/npc/generate/newSlaveIntro.js b/src/npc/generate/newSlaveIntro.js
index 3f7d0824c72..a298ca6164d 100644
--- a/src/npc/generate/newSlaveIntro.js
+++ b/src/npc/generate/newSlaveIntro.js
@@ -548,8 +548,8 @@ App.UI.newSlaveIntro = function(slave, slave2, {tankBorn = false, momInterest =
 		}
 
 		if (V.arcologies[0].FSIntellectualDependency >= 50) {
-			if (slave.pregKnown === 1) {
-				r.push(`${He} realizes that your arcology values bearing children and <span class="mediumaquamarine">hopes</span> ${he}'ll be treated gently for being pregnant.`);
+			if (slave.intelligence <= -50) {
+				r.push(`${He} realizes that your arcology values dumb slaves and <span class="mediumaquamarine">hopes</span> ${he}'ll fit in with ${his} low intelligence.`);
 				slave.trust += 2;
 			}
 		}
-- 
GitLab