From 8272e6c0350e5b4ad3d954950c2672d57d6a2bc7 Mon Sep 17 00:00:00 2001
From: klorpa <30924131+klorpa@users.noreply.github.com>
Date: Sat, 3 Aug 2019 21:36:42 -0500
Subject: [PATCH] Threes

---
 src/uncategorized/ptWorkaround.tw      | 8 ++++----
 src/uncategorized/saLongTermEffects.tw | 4 ++--
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/uncategorized/ptWorkaround.tw b/src/uncategorized/ptWorkaround.tw
index ed8a5817316..6a4e90d9c31 100644
--- a/src/uncategorized/ptWorkaround.tw
+++ b/src/uncategorized/ptWorkaround.tw
@@ -91,18 +91,18 @@
 		Your close and expert attention improves $his health in a way drug treatment or mere medical intervention cannot. @@.green;$His health has improved.@@
 		<<set $activeSlave.health = $activeSlave.health+10>>
 	<</if>>
-	<<if (($activeSlave.anus >= 3) || ($activeSlave.vagina >= 3)) && $activeSlave.geneMods.rapidCellGrowth != 1>>
+	<<if (($activeSlave.anus == 3) || ($activeSlave.vagina == 3)) && $activeSlave.geneMods.rapidCellGrowth != 1>>
 		$activeSlave.slaveName is a veteran sex slave and has seen hard use. Tightening up a slave is difficult, but with close supervision and attention it can be done. You and your other slaves carefully apply injections, creams, and massage, and $his other work is carefully managed to reduce wear and tear.
-		<<if ($activeSlave.anus >= 3) && (random(1,100) > 50)>>
+		<<if ($activeSlave.anus == 3) && (random(1,100) > 50)>>
 			@@.orange;$His anus has recovered and is now merely loose.@@
 			<<set $activeSlave.anus-->>
 		<<elseif ($activeSlave.anus >= 3)>>
 			$His distended anus does not improve this week.
 		<</if>>
-		<<if ($activeSlave.vagina >= 3) && (random(1,100) > 50)>>
+		<<if ($activeSlave.vagina == 3) && (random(1,100) > 50)>>
 			@@.orange;$His pussy has tightened.@@
 			<<set $activeSlave.vagina-->>
-		<<elseif ($activeSlave.vagina >= 3)>>
+		<<elseif ($activeSlave.vagina == 3)>>
 			$His loose pussy does not recover this week.
 		<</if>>
 	<</if>>
diff --git a/src/uncategorized/saLongTermEffects.tw b/src/uncategorized/saLongTermEffects.tw
index 811bac48de9..1e30f7654c7 100644
--- a/src/uncategorized/saLongTermEffects.tw
+++ b/src/uncategorized/saLongTermEffects.tw
@@ -1590,10 +1590,10 @@
 	<<if ($slaves[$i].assignment != "serve in the master suite") || ($masterSuiteUpgradeLuxury < 2)>>
 		<<if ($slaves[$i].assignment != "work in the dairy") || ($dairyStimulatorsSetting == 0)>>
 			<<if $slaves[$i].geneMods.rapidCellGrowth != 1>>
-				<<if ($slaves[$i].vagina >= 3) && !["huge dildo", "large dildo", "long, huge dildo", "long, large dildo"].includes($slaves[$i].vaginalAccessory)>>
+				<<if ($slaves[$i].vagina == 3) && !["huge dildo", "large dildo", "long, huge dildo", "long, large dildo"].includes($slaves[$i].vaginalAccessory)>>
 					With a rest from strenuous use, @@.lime;$his loose vagina recovers a little.@@
 					<<set $slaves[$i].vagina -= 1>>
-				<<elseif ($slaves[$i].anus >= 3) && !["huge plug", "large plug", "long, huge plug", "long, large plug"].includes($slaves[$i].buttplug)>>
+				<<elseif ($slaves[$i].anus == 3) && !["huge plug", "large plug", "long, huge plug", "long, large plug"].includes($slaves[$i].buttplug)>>
 					With a rest from continual sodomy, @@.lime;$his gaping anus recovers a little.@@
 					<<set $slaves[$i].anus -= 1>>
 				<</if>>
-- 
GitLab