From 75dba608dc94e070c114737e1e36b3c2a2e5d941 Mon Sep 17 00:00:00 2001
From: Pregmodder <pregmodder@gmail.com>
Date: Thu, 16 Jul 2020 18:14:09 -0400
Subject: [PATCH] RECI feminization entry tweaks

---
 src/js/assayJS.js | 49 +++++++++++++++++++++++++----------------------
 1 file changed, 26 insertions(+), 23 deletions(-)

diff --git a/src/js/assayJS.js b/src/js/assayJS.js
index 307a23ec7df..456dd4f3cdb 100644
--- a/src/js/assayJS.js
+++ b/src/js/assayJS.js
@@ -172,29 +172,6 @@ globalThis.newSlave = function(slave) {
 		}
 	}
 
-	if (slave.dick > 0 &&
-		slave.balls > 0 &&
-		slave.devotion <= 50 &&
-		(slave.fetish !== "buttslut" || slave.fetishKnown !== 1) &&
-		slave.sexualFlaw !== "hates women") {
-		V.REFeminizationCheckinIDs.push(slave.ID);
-	}
-	if (slave.actualAge > 35 && slave.face <= 10 && slave.faceImplant === 0 && slave.energy <= 60) {
-		V.REMILFCheckinIDs.push(slave.ID);
-	}
-	if (slave.attrXY <= 35 && slave.attrXX > 65) {
-		V.REOrientationCheckinIDs.push(slave.ID);
-	}
-	if (slave.face < -10) {
-		V.REUglyCheckinIDs.push(slave.ID);
-	}
-	if (slave.anus < 2) {
-		V.REButtholeCheckinIDs.push(slave.ID);
-	}
-	if (slave.boobs < 800) {
-		V.REReductionCheckinIDs.push(slave.ID);
-	}
-
 	if (slave.genes === "XX") {
 		if (slave.pubertyXX === 1) {
 			if (slave.pubertyXY === 1) {
@@ -225,6 +202,32 @@ globalThis.newSlave = function(slave) {
 		}
 	}
 
+	if (slave.dick > 0 &&
+		slave.balls > 0 &&
+		slave.vagina < 0 &&
+		slave.anus === 0 &&
+		slave.genes === "XY" &&
+		slave.faceShape === "masculine" &&
+		slave.attrXY <= 35 &&
+		slave.hormoneBalance < 0 {
+		V.REFeminizationCheckinIDs.push(slave.ID);
+	}
+	if (slave.actualAge > 35 && slave.face <= 10 && slave.faceImplant === 0 && slave.energy <= 60) {
+		V.REMILFCheckinIDs.push(slave.ID);
+	}
+	if (slave.attrXY <= 35 && slave.attrXX > 65) {
+		V.REOrientationCheckinIDs.push(slave.ID);
+	}
+	if (slave.face < -10) {
+		V.REUglyCheckinIDs.push(slave.ID);
+	}
+	if (slave.anus < 2) {
+		V.REButtholeCheckinIDs.push(slave.ID);
+	}
+	if (slave.boobs < 800) {
+		V.REReductionCheckinIDs.push(slave.ID);
+	}
+
 	generatePronouns(slave);
 	SetBellySize(slave);
 	addSlave(slave);
-- 
GitLab