diff --git a/src/uncategorized/clinic.tw b/src/uncategorized/clinic.tw
index 80d8114857dc763592b0c372e260c00826ae3981..a7ba5923f44e830088050518c1e6ab29c9f3b72d 100644
--- a/src/uncategorized/clinic.tw
+++ b/src/uncategorized/clinic.tw
@@ -100,11 +100,18 @@ $clinicNameCaps
 
 <br>
 <<if $clinicUpgradeFilters == 1>>
-	<<if $clinicUpgradePurge == 1>>
-		The entire floor beneath $clinicName is occupied by a huge filtration plant that constantly cycles out the patients' blood to remove impurities. The blood is intensely cleaned to greatly decrease the presence of impurities at the cost of compatibility. Patients will likely be ill for the duration of the treatment.
-	<<else>>
-		<<set _Tmult3 = Math.trunc(150000*$upgradeMultiplierArcology*Math.min($upgradeMultiplierMedicine, $HackingSkillMultiplier))>>
-		The entire floor beneath $clinicName is occupied by a huge filtration plant that constantly cycles out the patients' blood to remove impurities. [[Increase the effectiveness of the impurity purging|Clinic][cashX(forceNeg(_Tmult3), "capEx"), $clinicUpgradePurge = 1, $PC.hacking += 0.1]] //Costs <<print cashFormat(_Tmult3)>> and may cause health problems in slaves//
+	<<if $clinicUpgradePurge >= 1>>
+		The entire floor beneath $clinicName is occupied by a huge filtration plant that constantly cycles out the patients' blood to remove impurities.
+		<<if  $clinicUpgradePurge > 1>>
+			Microscopic magnets have been added to better facilitate the leeching of impurities from cells.
+		<</if>>
+		The blood is intensely cleaned to greatly decrease the presence of impurities at the cost of compatibility. Patients will likely be ill for the duration of the treatment.
+	<</if>>
+	<<set _Tmult3 = Math.trunc(150000*$upgradeMultiplierArcology*Math.min($upgradeMultiplierMedicine, $HackingSkillMultiplier))>>
+	<<if $clinicUpgradePurge === 0>>
+		<br>The entire floor beneath $clinicName is occupied by a huge filtration plant that constantly cycles out the patients' blood to remove impurities. [[Increase the effectiveness of the impurity purging|Clinic][cashX(forceNeg(_Tmult3), "capEx"), $clinicUpgradePurge = 1, $PC.hacking += 0.1]] //Costs <<print cashFormat(_Tmult3)>> and may cause health problems in slaves.//
+	<<elseif $clinicUpgradePurge === 1>>
+		<br>Add nano magnets into the process to increase the rate that impurities are pulled from the body. [[Further increase the effectiveness of the impurity purging|Clinic][cashX(forceNeg(_Tmult3*2), "capEx"), $clinicUpgradePurge = 3, $PC.hacking += 0.1]] //Costs <<print cashFormat(_Tmult3*2)>>//
 	<</if>>
 	<<if $Nurse == 0>>
 		<br>However, without a nurse in attendance, the @@.yellow;blood treatment equipment remains idle.@@
diff --git a/src/uncategorized/clinicReport.tw b/src/uncategorized/clinicReport.tw
index 93d5e51cb5a0c8814022df89e7856abaf6590140..cded246203e7868dee1375bf8d86b809e43dbb1f 100644
--- a/src/uncategorized/clinicReport.tw
+++ b/src/uncategorized/clinicReport.tw
@@ -257,9 +257,9 @@
 		<<if ($clinicSpeedGestation == 1) && ($slaves[$i].pregKnown == 1)>>
 			<<set $slaves[$i].pregControl = "speed up">>
 		<</if>>
-		<<if ($slaves[$i].chem > 10) && ($clinicUpgradeFilters == 1)>>
+		<<if ($slaves[$i].chem > 10) && ($clinicUpgradeFilters >= 1)>>
 			<<set $slaves[$i].chem -= (5 + (50 * $clinicUpgradePurge))>>
-			<<if $clinicUpgradePurge == 1 && $slaves[$i].health > -50>>
+			<<if $slaves[$i].health > -50>>
 				<<set $slaves[$i].health = -50>>
 			<</if>>
 			<<set $slaves[$i].chem = Math.max($slaves[$i].chem, 0)>>
diff --git a/src/uncategorized/slaveInteract.tw b/src/uncategorized/slaveInteract.tw
index 43b1312593def8ed159a165ebe2a7b0d71a86f5e..123f70cbed4e03685630e13caadf9e8204067cd2 100644
--- a/src/uncategorized/slaveInteract.tw
+++ b/src/uncategorized/slaveInteract.tw
@@ -594,10 +594,10 @@
 		|	<<link "Kitty lingerie">><<set $activeSlave.clothes = "kitty lingerie",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>>
 	<</if>>
 	<<if isItemAccessible("a klan robe")>>
-		|	<<link "Ku Klux Klan Robe (nice)">><<set $activeSlave.clothes = "a klan robe",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>>
+		|	<<link "Ku Klux Klan robe (nice)">><<set $activeSlave.clothes = "a klan robe",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>>
 	<</if>>
 	<<if isItemAccessible("a slutty klan robe")>>
-		|	<<link "Ku Klux Klan Robe (slutty)">><<set $activeSlave.clothes = "a slutty klan robe",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>>
+		|	<<link "Ku Klux Klan robe (slutty)">><<set $activeSlave.clothes = "a slutty klan robe",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>>
 	<</if>>
 	<<if isItemAccessible("a latex catsuit")>>
 		|	<<link "Latex catsuit">><<set $activeSlave.clothes = "a latex catsuit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>>