From 3089a52bfcfcafe1664ce32c826b1dc39479a445 Mon Sep 17 00:00:00 2001
From: Anu <anulithic@gmail.com>
Date: Tue, 15 Aug 2023 19:25:40 -0700
Subject: [PATCH] Improved dick growth warnings

---
 src/endWeek/saDrugs.js | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/src/endWeek/saDrugs.js b/src/endWeek/saDrugs.js
index 6c31c854a2d..686986bebd8 100644
--- a/src/endWeek/saDrugs.js
+++ b/src/endWeek/saDrugs.js
@@ -1042,11 +1042,14 @@ App.SlaveAssignment.drugs = function saDrugs(slave) {
 							slave.balls += 1;
 						}
 					}
-					if (slave.dick === 6) {
+					if (slave.dick === maxErectionSize(slave)) {
 						if (slave.balls > 0) {
 							r += ` <span class="yellow">${His} dick is at the limit of what ${his} cardiovascular system could conceivably bring erect.</span> Further penis enhancement may limit ${his} ability to get hard.`;
 						}
 					}
+					if (slave.dick === 7) {
+						r += ` <span class="yellow">${His} cock's length and girth are already a considerable challenge for most orifices to accommodate.</span> Continued growth will leave ${him} unable to safely penetrate ${his} partners.`;
+					}
 				} else {
 					if (jsRandom(1, 100) > growth - (slave.clit * 10)) {
 						r += ` <span class="lime">${His} clit grows painfully,</span> becoming both longer and girthier.`;
@@ -1074,6 +1077,14 @@ App.SlaveAssignment.drugs = function saDrugs(slave) {
 							r += `The treatment fails to overcome ${his} <span class="orange">NCS</span> and ${his} cock fails to grow. `;
 						}
 					}
+					if (slave.dick === maxErectionSize(slave)) {
+						if (slave.balls > 0) {
+							r += ` <span class="yellow">${His} dick is at the limit of what ${his} cardiovascular system could conceivably bring erect.</span> Further penis enhancement may limit ${his} ability to get hard.`;
+						}
+					}
+					if (slave.dick === 7) {
+						r += ` <span class="yellow">${His} cock's length and girth are already a considerable challenge for most orifices to accommodate.</span> Continued growth will leave ${him} unable to safely penetrate ${his} partners.`;
+					}
 				} else {
 					r += ` ${He} receives <span class="lime">direct injections of hyper growth hormones, right into ${his} clit.</span>`;
 					slave.chem += 2;
-- 
GitLab