From 91c7a190523a1038f30a1e321eefd1b657846547 Mon Sep 17 00:00:00 2001
From: Jones <Jones>
Date: Fri, 1 Feb 2019 12:08:29 +0100
Subject: [PATCH] Moving implants below injections for slaveCreation

---
 src/utility/slaveCreationWidgets.tw | 40 ++++++++++++++---------------
 1 file changed, 20 insertions(+), 20 deletions(-)

diff --git a/src/utility/slaveCreationWidgets.tw b/src/utility/slaveCreationWidgets.tw
index 1d855bc7a0c..0471e9262a1 100644
--- a/src/utility/slaveCreationWidgets.tw
+++ b/src/utility/slaveCreationWidgets.tw
@@ -2075,25 +2075,6 @@
 	<<else>>
 		The corporation does not use cosmetic surgery to improve its slaves for sale.
 	<</if>>
-	<<if $corpSpecImplants == 1>>
-		Slaves are given tasteful breast, butt, and lip implants.
-		<<set $activeSlave.buttImplant = 1>>
-		<<set $activeSlave.butt = Math.clamp($activeSlave.butt+$activeSlave.buttImplant, 0, 10)>>
-		<<set $activeSlave.boobsImplant = 600>>
-		<<set $activeSlave.boobs = Math.clamp($activeSlave.boobs+$activeSlave.boobsImplant, 0, 10000)>>
-		<<set $activeSlave.lipsImplant = 20>>
-		<<set $activeSlave.lips = Math.clamp($activeSlave.lips+$activeSlave.lipsImplant, 0, 55)>>
-	<<elseif $corpSpecImplants == 2>>
-		Slaves are given absurd breast, butt, and lip implants.
-		<<set $activeSlave.buttImplant = 4>>
-		<<set $activeSlave.butt = Math.clamp($activeSlave.butt+$activeSlave.buttImplant, 0, 10, $activeSlave.butt+$activeSlave.buttImplant)>>
-		<<set $activeSlave.boobsImplant = 2400>>
-		<<set $activeSlave.boobs = Math.clamp($activeSlave.boobs+$activeSlave.boobsImplant, 0, 10000)>>
-		<<set $activeSlave.lipsImplant = 60>>
-		<<set $activeSlave.lips = Math.clamp($activeSlave.lipsImplant+$activeSlave.buttImplant, 0, 100)>>
-	<<else>>
-		Slaves are not given breast, butt, or lip implants.
-	<</if>>
 	<<if $corpSpecPussy == 1>>
 		The corporation adds pussies where needed.
 		<<set $activeSlave.vagina = 0,
@@ -2218,7 +2199,7 @@
 	<</if>>
 	<<if $corpSpecInjection > 0>>
 		<<if $corpSpecInjection == 1>>
-			If anything, hormones are used to reduce assets sizes.
+			If anything, hormones are used to reduce asset sizes.
 			<<set $activeSlave.lips = random(0, 20),
 			$activeSlave.butt = random(1, 2),
 			$activeSlave.boobs = 10 * random(30, 60),
@@ -2281,6 +2262,25 @@
 	<<else>>
 		Growth hormones are not applied.
 	<</if>>
+	<<if $corpSpecImplants == 1>>
+		Slaves are given tasteful breast, butt, and lip implants.
+		<<set $activeSlave.buttImplant = 1>>
+		<<set $activeSlave.butt = Math.clamp($activeSlave.butt+$activeSlave.buttImplant, 0, 10)>>
+		<<set $activeSlave.boobsImplant = 600>>
+		<<set $activeSlave.boobs = Math.clamp($activeSlave.boobs+$activeSlave.boobsImplant, 0, 10000)>>
+		<<set $activeSlave.lipsImplant = 20>>
+		<<set $activeSlave.lips = Math.clamp($activeSlave.lips+$activeSlave.lipsImplant, 0, 55)>>
+	<<elseif $corpSpecImplants == 2>>
+		Slaves are given absurd breast, butt, and lip implants.
+		<<set $activeSlave.buttImplant = 4>>
+		<<set $activeSlave.butt = Math.clamp($activeSlave.butt+$activeSlave.buttImplant, 0, 10, $activeSlave.butt+$activeSlave.buttImplant)>>
+		<<set $activeSlave.boobsImplant = 2400>>
+		<<set $activeSlave.boobs = Math.clamp($activeSlave.boobs+$activeSlave.boobsImplant, 0, 10000)>>
+		<<set $activeSlave.lipsImplant = 60>>
+		<<set $activeSlave.lips = Math.clamp($activeSlave.lipsImplant+$activeSlave.buttImplant, 0, 100)>>
+	<<else>>
+		Slaves are not given breast, butt, or lip implants.
+	<</if>>
 	<<if $corpSpecAmputee == 1>>
 		The corporation removes all limbs from its slaves.
 		<<set $activeSlave.amp = 1>>
-- 
GitLab