From c05e773bdb2a6194c74e183c8444223b724bfc4b Mon Sep 17 00:00:00 2001
From: Anu <anulithic@gmail.com>
Date: Thu, 7 Dec 2023 23:42:46 -0800
Subject: [PATCH] reCelebrityDebt: consistently use 16 as child/adult actress
 threshold

---
 src/events/RE/reCelebrityDebt.js | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/events/RE/reCelebrityDebt.js b/src/events/RE/reCelebrityDebt.js
index dfaf595b9da..64322e4052d 100644
--- a/src/events/RE/reCelebrityDebt.js
+++ b/src/events/RE/reCelebrityDebt.js
@@ -7,8 +7,8 @@ App.Events.RECelebrityAddictionDebt = class RECelebrityAddictionDebt extends App
 		const slave = newCelebrityAddict();
 		const {him, his, he} = getPronouns(slave);
 
-		slave.prestigeDesc = `$He used to be ${slave.actualAge <= 16 ? "a child actress" : "an actress"}, starring in several recent blockbuster films that many millions loved to watch on whatever screens they could get their hands on.`;
-		slave.origin = `$He was a famous ${slave.actualAge <= 16 ? "child " : ""}actress until $his drug habits pushed $him so far into debt that $his agent sold $him to you at auction.`;
+		slave.prestigeDesc = `$He used to be ${slave.actualAge < 16 ? "a child actress" : "an actress"}, starring in several recent blockbuster films that many millions loved to watch on whatever screens they could get their hands on.`;
+		slave.origin = `$He was a famous ${slave.actualAge < 16 ? "child " : ""}actress until $his drug habits pushed $him so far into debt that $his agent sold $him to you at auction.`;
 
 		App.Events.drawEventArt(node, slave, "no clothing");
 
@@ -49,7 +49,7 @@ App.Events.RECelebrityAddictionDebt = class RECelebrityAddictionDebt extends App
 				ageOverridesPedoMode: true
 			});
 
-			slave.career = slave.actualAge <= 16 ? "a child actress" : "an actress";
+			slave.career = slave.actualAge < 16 ? "a child actress" : "an actress";
 			slave.prestige = 2;
 
 			slave.devotion = random(-80, -60);
@@ -60,7 +60,7 @@ App.Events.RECelebrityAddictionDebt = class RECelebrityAddictionDebt extends App
 				slave.boobs = Math.clamp(slave.boobs, 100, 200);
 			} else if (slave.actualAge < 13) {
 				slave.boobs = Math.clamp(slave.boobs, 100, 300);
-			} else if (slave.actualAge <= 16) {
+			} else if (slave.actualAge < 16) {
 				slave.boobs = Math.clamp(slave.boobs, 100, 500);
 			} else {
 				slave.boobs = Math.clamp(slave.boobs, 100, 2000);
@@ -72,7 +72,7 @@ App.Events.RECelebrityAddictionDebt = class RECelebrityAddictionDebt extends App
 			slave.geneticQuirks.pFace = 2;
 			slave.weight = random(-40, 20);
 
-			if (slave.visualAge < 15) {
+			if (slave.visualAge < 16) {
 				slave.faceShape = "cute";
 			}
 
-- 
GitLab