From 41a34df9c10f650fedc37c959eca540ea598d77f Mon Sep 17 00:00:00 2001
From: Pregmodder <pregmodder@gmail.com>
Date: Mon, 13 Feb 2023 16:31:14 -0500
Subject: [PATCH] drop genetic breast size in preparation for proper
 implementation

---
 js/003-data/slaveGeneData.js | 9 +--------
 src/js/SlaveState.js         | 2 --
 src/player/js/PlayerState.js | 2 --
 3 files changed, 1 insertion(+), 12 deletions(-)

diff --git a/js/003-data/slaveGeneData.js b/js/003-data/slaveGeneData.js
index 5e9abbb4378..93218cbc58a 100644
--- a/js/003-data/slaveGeneData.js
+++ b/js/003-data/slaveGeneData.js
@@ -129,14 +129,7 @@ App.Data.geneticQuirks = new Map([
 			description: "pleasurable pregnancy and orgasmic birth"
 		}
 	],
-	["bustSize",
-		{
-			title: "",
-			abbreviation: "",
-			description: "",
-			restricted: true
-		}
-	],
+
 	["macromastia",
 		{
 			title: "macromastia",
diff --git a/src/js/SlaveState.js b/src/js/SlaveState.js
index cb7b4bbd0a9..2f4285e3dc4 100644
--- a/src/js/SlaveState.js
+++ b/src/js/SlaveState.js
@@ -2330,8 +2330,6 @@ App.Entity.SlaveState = class SlaveState {
 			rearLipedema: 0,
 			/** has (or will have) a huge dong */
 			wellHung: 0,
-			/** predisposed to having and supporting larger tits. DO NOT USE! This will become genetic breast size! */
-			bustSize: 0,
 			/** constantly gains weight unless dieting, easier to gain weight. wGain + wLoss - weight gain/loss fluctuates randomly */
 			wGain: 0,
 			/** constantly loses weight unless gaining, easier to lose weight. wGain + wLoss - weight gain/loss fluctuates randomly */
diff --git a/src/player/js/PlayerState.js b/src/player/js/PlayerState.js
index e1299c67ab4..54e5149ca8e 100644
--- a/src/player/js/PlayerState.js
+++ b/src/player/js/PlayerState.js
@@ -1704,8 +1704,6 @@ App.Entity.PlayerState = class PlayerState {
 			rearLipedema: 0,
 			/** has (or will have) a huge dong */
 			wellHung: 0,
-			/** predisposed to having and supporting larger tits */
-			bustSize: 0,
 			/** constantly gains weight unless dieting, easier to gain weight. wGain + wLoss - weight gain/loss fluctuates randomly */
 			wGain: 0,
 			/** constantly loses weight unless gaining, easier to lose weight. wGain + wLoss - weight gain/loss fluctuates randomly */
-- 
GitLab