From a56ed8b99e1f8810993bda687ba1caff47cd3583 Mon Sep 17 00:00:00 2001
From: Anu <8636-Anu@users.noreply.gitgud.io>
Date: Thu, 4 Nov 2021 00:42:13 +0000
Subject: [PATCH] No negative boobs

---
 src/events/recETS/recetsIncestMotherDaughter.js | 2 +-
 src/events/recETS/recetsPoshMotherDaughter.js   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/events/recETS/recetsIncestMotherDaughter.js b/src/events/recETS/recetsIncestMotherDaughter.js
index e534e43ead8..f05d67d6f25 100644
--- a/src/events/recETS/recetsIncestMotherDaughter.js
+++ b/src/events/recETS/recetsIncestMotherDaughter.js
@@ -53,7 +53,7 @@ App.Events.recetsIncestMotherDaughter = class recetsIncestMotherDaughter extends
 		daughter.counter.birthsTotal = 0;
 		daughter.skill.vaginal = 15;
 		daughter.anus = 0;
-		daughter.boobs -= 300;
+		daughter.boobs = Math.max(daughter.boobs - 300, 0);
 		daughter.lactation = 0;
 		daughter.lactationDuration = 0;
 		daughter.boobsImplant = 0;
diff --git a/src/events/recETS/recetsPoshMotherDaughter.js b/src/events/recETS/recetsPoshMotherDaughter.js
index 90e7231a1ea..97166ef1652 100644
--- a/src/events/recETS/recetsPoshMotherDaughter.js
+++ b/src/events/recETS/recetsPoshMotherDaughter.js
@@ -53,7 +53,7 @@ App.Events.recetsPoshMotherDaughter = class recetsPoshMotherDaughter extends App
 		daught.trust -= 10;
 		daught.oldDevotion = daught.devotion;
 		daught.oldTrust = daught.trust;
-		daught.boobs -= 200;
+		daught.boobs = Math.max(daught.boobs - 200, 0);
 		daught.anus = 0;
 		daught.skill.vaginal = 0;
 
-- 
GitLab