diff --git a/devNotes/VersionChangeLog-Premod+LoliMod.txt b/devNotes/VersionChangeLog-Premod+LoliMod.txt
index ea8f905cf6a0ba9743e5ad4f06c7bc4384140ab1..6324ac965d5c08e1a2b0557364fec709dfa61aa3 100644
--- a/devNotes/VersionChangeLog-Premod+LoliMod.txt
+++ b/devNotes/VersionChangeLog-Premod+LoliMod.txt
@@ -4909,4 +4909,11 @@ Pregmod 0.10.3.0
 	-git contributed fixes
 	
 	207
-	-git contributed code simplification and fixes
\ No newline at end of file
+	-git contributed code simplification and fixes
+	
+	12/14/17
+	
+	208
+	-saRules now applies to the cellblock
+	-new cellblock setting to forbid your wardeness from cumming inside your prisoners
+	-git contributed fixes
\ No newline at end of file
diff --git a/devNotes/twine JS b/devNotes/twine JS
index 6f3b6a3c3a67215327e38d6d5c2096f58034b5b8..f80ede0633d1dccf6b83b65869889cb6597c81b8 100644
--- a/devNotes/twine JS	
+++ b/devNotes/twine JS	
@@ -2160,6 +2160,14 @@ window.getSlaveCost = function(s) {
 		} else {
 			cost += rulesCost;
 		}
+	} else if(s.assignment === Job.WARDEN) {
+		cost += rulesCost * 2;
+	} else if(s.assignment === Job.JAIL) {
+		if(s.livingRules == LivingRule.NORMAL) {
+			cost += rulesCost * 1.25;
+		} else {
+			cost += rulesCost * .90;
+		}
 	} else {	
 		if(s.livingRules === LivingRule.LUXURIOUS) {
 			cost += rulesCost * (s.relationship >= 4 ? 3 : 4);
diff --git a/src/init/storyInit.tw b/src/init/storyInit.tw
index aa5e39bc3943d12c3a5d961dfc2977b27f9fafa4..df379230151ae797b026669dc8340fbcd0d6b76a 100644
--- a/src/init/storyInit.tw
+++ b/src/init/storyInit.tw
@@ -507,6 +507,7 @@ DairyRestraintsSetting($dairyRestraintsSetting)
 <<set $cellblock = 0>>
 <<set $cellblockName = "the Cellblock">>
 <<set $cellblockNameCaps = "The Cellblock">>
+<<set $cellblockWardenCumsInside = 1>>
 <<set $masterSuiteSlaves = 0>>
 <<set $masterSuiteDecoration = "standard">>
 <<set $masterSuiteUpgradeLuxury = 0>>
diff --git a/src/js/economyJS.tw b/src/js/economyJS.tw
index a4bd7797424a67c7bde0935b169cd419dc558dc6..79157322728db1390dbbdfb56994e3cad59af9d4 100644
--- a/src/js/economyJS.tw
+++ b/src/js/economyJS.tw
@@ -346,6 +346,14 @@ window.getSlaveCost = function(s) {
 		} else {
 			cost += rulesCost;
 		}
+	} else if(s.assignment === Job.WARDEN) {
+		cost += rulesCost * 2;
+	} else if(s.assignment === Job.JAIL) {
+		if(s.livingRules == LivingRule.NORMAL) {
+			cost += rulesCost * 1.25;
+		} else {
+			cost += rulesCost * .90;
+		}
 	} else {	
 		if(s.livingRules === LivingRule.LUXURIOUS) {
 			cost += rulesCost * (s.relationship >= 4 ? 3 : 4);
diff --git a/src/uncategorized/BackwardsCompatibility.tw b/src/uncategorized/BackwardsCompatibility.tw
index a58b079e181564ed0dce6c86290d02098dc7d646..e4e18df288702b0f66fcb11a98e055e11f29cb37 100644
--- a/src/uncategorized/BackwardsCompatibility.tw
+++ b/src/uncategorized/BackwardsCompatibility.tw
@@ -1451,7 +1451,7 @@ Setting missing global variables:
 <</if>>
 
 <<if ndef $facilityCost>>
-<<set $facilityCost = 500>>
+<<set $facilityCost = 100>>
 <</if>>
 <<if ndef $policyCost>>
 	<<set $policyCost = 5000>>
@@ -1680,6 +1680,9 @@ Setting missing global variables:
 <<if ndef $cellblockDecoration>>
 	<<set $cellblockDecoration = "standard">>
 <</if>>
+<<if ndef $cellblockWardenCumsInside>>
+	<<set $cellblockWardenCumsInside = 0>>
+<</if>>
 
 <<if ndef $MastSiIDs>>
 	<<set $MastSiIDs = []>>
diff --git a/src/uncategorized/cellblock.tw b/src/uncategorized/cellblock.tw
index 701718b3c4f31311caa2f16865966df6378557c3..d6698ffe17ec93fbe4e1694e2b138dd7d563c2d6 100644
--- a/src/uncategorized/cellblock.tw
+++ b/src/uncategorized/cellblock.tw
@@ -61,9 +61,9 @@ $cellblockNameCaps
 <</switch>>
 
 <<if $cellblockSlaves > 2>>
-	$cellblockNameCaps is full of slaves, though it's difficult to tell at first. The row of cell doors is closed as always, and the soundproofed little rooms let no noise escape. Through each little window, though, a scene of loneliness and misery may be witnessed.
+	$cellblockNameCaps is full of slaves, though it's difficult to tell at first. In many of the cells, a scene of loneliness and misery may be witnessed, but not one sound escapes them in fear of the punishment that would follow.
 <<elseif $cellblockSlaves > 0>>
-	$cellblockNameCaps holds a few slaves, though it's difficult to tell at first. The row of cell doors is closed as always, and the soundproofed little rooms let no noise escape. Through several of the little windows, though, a scene of loneliness and misery may be witnessed.
+	$cellblockNameCaps holds a few slaves, though it's difficult to tell at first. In several of the cells, a scene of loneliness and misery may be witnessed, but not one sound escapes them in fear of the punishment that would follow.
 <<elseif $Wardeness != 0>>
 	$Wardeness.slaveName is alone in the cellblock, and seems rather lonely without anyone to oppress.
 <<else>>
@@ -82,6 +82,15 @@ $cellblockNameCaps
 	Its compliance systems are standard. [[Upgrade them to soften slave flaws|Cellblock][$cash -= _Tmult1, $cellblockUpgrade = 1]] //Costs ¤_Tmult1//
 <</if>>
 
+<br><br>
+<<if $Wardeness != 0 && canPenetate($Warden)>>
+	<<if $cellblockWardenCumsInside == 1>>
+		$Warden.slaveName is permitted to cum inside her inmates when she disciplines them. [[Forbid her from cumming inside|Cellblock][$cellblockWardenCumsInside = 0]]
+	<<else>>
+		$Warden.slaveName is not permitted to cum inside her inmates. [[Let her cum inside|Cellblock][$cellblockWardenCumsInside = 1]] //May result in pregnancies//
+	<</if>>
+<</if>>
+
 <br><br>
 <<if $Wardeness != 0>>
 	<<set $Flag = 2>>
diff --git a/src/uncategorized/cellblockReport.tw b/src/uncategorized/cellblockReport.tw
index 87e0d10f6928b7750b7716a332d021032f21a9c6..b690745472b986eaeadd5f7502db54a1c0444e3d 100644
--- a/src/uncategorized/cellblockReport.tw
+++ b/src/uncategorized/cellblockReport.tw
@@ -28,6 +28,9 @@
 	<<if $slaves[_FLs].trust < 60>>
 		<<set $slaves[_FLs].trust += 3>>
 	<</if>>
+	<<if ($slaves[_FLs].livingRules != "luxurious")>>
+		<<set $slaves[_FLs].livingRules = "luxurious">>
+	<</if>>
 	<<if $slaves[_FLs].fetishStrength <= 95>>
 		<<if $slaves[_FLs].fetish != "sadist">>
 			<<fetishChangeChance $slaves[_FLs]>>
@@ -149,6 +152,7 @@
 		''__@@.pink;<<SlaveFullName $slaves[$i]>>@@__'' is serving as the Wardeness in $cellblockName.
 		<br>&nbsp;&nbsp;&nbsp;&nbsp;
 		<<include "SA chooses own clothes">>
+		<<include "SA rules">>
 		<<include "SA diet">>
 		<<include "SA long term effects">>
 		<<include "SA drugs">>
@@ -158,6 +162,7 @@
 	<<else>>
 		<<silently>>
 		<<include "SA chooses own clothes">>
+		<<include "SA rules">>
 		<<include "SA diet">>
 		<<include "SA long term effects">>
 		<<include "SA drugs">>
@@ -178,14 +183,46 @@
 			<<set $slaves[$i].devotion++>>
 		<</if>>
 	<</if>>
-	<<if $cellblockDecoration == "Hedonistic">>
+	<<switch $cellblockDecoration>>
+	<<case "Paternalist">>
+		<<set $slaves[$i].livingRules = "normal">>
+		<<if ($slaves[$i].inflation > 0)>>
+			<<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, $slaves[$i].milkSource = 0>>
+			<<SetBellySize $slaves[$i]>>
+		<</if>>
+	<<case "Pastoralist">>
+		<<set $slaves[$i].livingRules = "spare">>
+		<<if $slaves[$i].inflation == 0>>
+			<<if $slaves[$i].pregKnown == 0 && $slaves[$i].bellyImplant < 1500>>
+				<<set $slaves[$i].inflation = 2, $slaves[$i].inflationType = "milk", $slaves[$i].inflationMethod = 1>>
+			<<else>>
+				<<set $slaves[$i].inflation = 1, $slaves[$i].inflationType = "milk", $slaves[$i].inflationMethod = 1>>
+			<</if>>
+			<<SetBellySize $slaves[$i]>>
+		<</if>>
+	<<case "Hedonistic">>
+		<<set $slaves[$i].livingRules = "spare">>
 		<<if $slaves[$i].weight < 200>>
 			<<set $slaves[$i].weight += 3>>
 		<</if>>
 		<<if $slaves[$i].muscles > -100>>
 			<<set $slaves[$i].muscles -= 2>>
 		<</if>>
-	<</if>>
+		<<if $slaves[$i].inflation == 0>>
+			<<if $slaves[$i].pregKnown == 0 && $slaves[$i].bellyImplant < 1500>>
+				<<set $slaves[$i].inflation = 3, $slaves[$i].inflationType = "food", $slaves[$i].inflationMethod = 1>>
+			<<else>>
+				<<set $slaves[$i].inflation = 1, $slaves[$i].inflationType = "food", $slaves[$i].inflationMethod = 1>>
+			<</if>>
+			<<SetBellySize $slaves[$i]>>
+		<</if>>
+	<<default>>
+		<<set $slaves[$i].livingRules = "spare">>
+		<<if ($slaves[$i].inflation > 0)>>
+			<<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, $slaves[$i].milkSource = 0>>
+			<<SetBellySize $slaves[$i]>>
+		<</if>>
+	<</switch>>
 	<<if $cellblockUpgrade == 1>>
 		<<if ($slaves[$i].behavioralFlaw != "none") && ($slaves[$i].behavioralQuirk == "none")>>
 			<<SoftenBehavioralFlaw $slaves[$i]>>
@@ -227,6 +264,7 @@
 		<</if>>
 		<br>&nbsp;&nbsp;&nbsp;&nbsp;She <<include "SA stay confined">>
 		<br>&nbsp;&nbsp;&nbsp;
+		<<include "SA rules">>
 		<<include "SA diet">>
 		<<include "SA long term effects">>
 		<<include "SA drugs">>
@@ -237,6 +275,7 @@
 		<<silently>>
 		<<include "SA chooses own job">>
 		<<include "SA stay confined">>
+		<<include "SA rules">>
 		<<include "SA diet">>
 		<<include "SA long term effects">>
 		<<include "SA drugs">>
diff --git a/src/uncategorized/costs.tw b/src/uncategorized/costs.tw
index bffe8af52bcca4ea470540d97833dea942f2a19d..8f1b20538afcd7ace1d9137990d1918aca67d8dc 100644
--- a/src/uncategorized/costs.tw
+++ b/src/uncategorized/costs.tw
@@ -118,6 +118,14 @@
 	<<else>>
 		<<set $costs += $rulesCost>>
 	<</if>>
+<<elseif ($slaves[$i].assignment == "be the Wardeness")>>
+	<<set $costs += ($rulesCost*2)>>
+<<elseif ($slaves[$i].assignment == "be confined in the cellblock")>>
+	<<if $slaves[$i].livingRules == "normal">>
+		<<set $costs += ($rulesCost*1.25)>>
+	<<else>>
+		<<set $costs += ($rulesCost*.9)>>
+	<</if>>
 <<else>>
 	<<if $slaves[$i].livingRules == "luxurious">>
 		<<if $slaves[$i].relationship >= 4>>
diff --git a/src/uncategorized/costsReport.tw b/src/uncategorized/costsReport.tw
index 5744d6212e1418393e27d6aa06b4a4ea8be833da..a20835cb4a449613d6b33cecef5d6218228fdd3f 100644
--- a/src/uncategorized/costsReport.tw
+++ b/src/uncategorized/costsReport.tw
@@ -235,6 +235,9 @@
 	<<elseif ($slaves[$i].assignment == "be the Nurse")>>
 		<br>&nbsp;&nbsp;&nbsp;&nbsp;Living expenses: ¤<<print ($rulesCost*2)>>
 		<<set $individualCosts += ($rulesCost*2)>>
+	<<elseif ($slaves[$i].assignment == "be the Wardeness")>>
+		<br>&nbsp;&nbsp;&nbsp;&nbsp;Living expenses: ¤<<print ($rulesCost*2)>>
+		<<set $individualCosts += ($rulesCost*2)>>
 	<<elseif ($slaves[$i].assignment == "serve in the club")>>
 		<br>&nbsp;&nbsp;&nbsp;&nbsp;Living expenses: ¤<<print ($rulesCost*1.5)>>
 		<<set $individualCosts += ($rulesCost*2)>>
@@ -246,7 +249,6 @@
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;Living expenses: ¤<<print $rulesCost>>
 			<<set $individualCosts += $rulesCost>>
 		<</if>>
-		<<set $individualCosts += ($rulesCost*2)>>
 	<<elseif ($slaves[$i].assignment == "get treatment in the clinic")>>
 		<<if $slaves[$i].livingRules == "luxurious">>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;Living expenses: ¤<<print ($rulesCost*2)>>
@@ -258,7 +260,14 @@
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;Living expenses: ¤<<print $rulesCost>>
 			<<set $individualCosts += $rulesCost>>
 		<</if>>
-		<<set $individualCosts += ($rulesCost*2)>>
+	<<elseif ($slaves[$i].assignment == "be confined in the cellblock")>>
+		<<if $slaves[$i].livingRules == "normal">>
+			<br>&nbsp;&nbsp;&nbsp;&nbsp;Living expenses: ¤<<print ($rulesCost*1.25)>>
+			<<set $individualCosts += ($rulesCost*1.25)>>
+		<<else>>
+			<br>&nbsp;&nbsp;&nbsp;&nbsp;Living expenses: ¤<<print ($rulesCost*.9)>>
+			<<set $individualCosts += ($rulesCost*.9)>>
+		<</if>>
 	<<else>>
 		<<if $slaves[$i].livingRules == "luxurious">>
 			<<if $slaves[$i].relationship >= 4>>
diff --git a/src/uncategorized/fsDevelopments.tw b/src/uncategorized/fsDevelopments.tw
index 3ace98541071ccdb8d95a98b8537f7193462d2b2..5890a00a954dad9f1d46a0fe28036d8c10acc107 100644
--- a/src/uncategorized/fsDevelopments.tw
+++ b/src/uncategorized/fsDevelopments.tw
@@ -19,7 +19,7 @@
 		<<set _descriptor = _FSRepDescriptors[0]>>
 	<<else>>
 		<<set _descriptor = _FSRepDescriptors[Math.trunc($FSGotRepCredits/($FSCreditCount-1)*_FSRepDescriptors.length-1)]>>
-	<<endif>>
+	<</if>>
 	<<set _ordinalName = _ordinalNames[$FSGotRepCredits-1]>>
 	<<if $FSGotRepCredits == $FSCreditCount-1>>
 	    <<set _ordinalName += " and final">>
diff --git a/src/uncategorized/policies.tw b/src/uncategorized/policies.tw
index 82230f9ff319d6d3b74ff7c08626ecc754e21b0d..44e2e766bf07449cc5dcf752ad107f9505fb7b29 100644
--- a/src/uncategorized/policies.tw
+++ b/src/uncategorized/policies.tw
@@ -722,7 +722,7 @@
 
 <<if $BasicWeightSMR == 0>>
 <<if $arcologies[0].FSHedonisticDecadenceSMR == 0>>
-	<br>''Basic Weight Standards:'' slaves must not exceed a weight treshold to be sold in the slave markets.
+	<br>''Basic Weight Standards:'' slaves must not exceed a weight threshold to be sold in the slave markets.
 	[[Implement|Policies][$BasicWeightSMR = 1, $cash -=5000, $rep -= 1000, $minimumSlaveCost += 3000]]
 	<br>&nbsp;&nbsp;&nbsp;&nbsp;//This will raise the price of slaves.
 <</if>>
diff --git a/src/uncategorized/saRules.tw b/src/uncategorized/saRules.tw
index 42450021194419d3b5efcd4f4f5c8c9d9dd35aee..51d7eab2584c9d29bb584a9d3764393b7a3ebec7 100644
--- a/src/uncategorized/saRules.tw
+++ b/src/uncategorized/saRules.tw
@@ -1340,6 +1340,237 @@
 					<<set $slaves[$i].trust -= _punishments>>
 				<</switch>>
 			<</if>>
+		<<case "be the Wardeness">>
+			<<set $slaves[$i].need -= ($cellblock*5)>>
+			<<if $slaves[$i].energy <= 20>>
+				is frigid and has little interest in getting off<<if ($slaves[$i].releaseRules != "permissive")>>, making the rule restricting her sexual outlets superfluous<</if>>.	
+				<<set $slaves[$i].need = 0>>
+			<<elseif $slaves[$i].need < $slaves[$i].energy*0.5>>
+				gets off at work, so she doesn't feel the need for release that often.
+				<<set $slaves[$i].need -= 20>>
+			<<else>>
+				<<if ($slaves[$i].releaseRules == "restrictive")>>
+					willingly begs you to
+					<<saRulesPlayerFetishPlay>>
+					whenever she crosses paths with you.
+					<<saRulesPlayerEnergy>>
+					<<saRulesPlayerDiscoversFetish>>
+					<<saRulesPlayerDrugEffects>>
+				<<elseif ($slaves[$i].releaseRules == "masturbation")>>
+					opts to @@.mediumaquamarine;take advantage of perks of her position@@ and use the prisoners for relief.
+					<<set $slaves[$i].trust += 1, $slaves[$i].need = 0>>
+					<<saRulesRapeFetish>>
+					<<saRulesRapeDiscoversFetish>>
+					<<saRulesPermissiveDrugEffects>>
+				<<else>>
+					happily @@.mediumaquamarine;avails herself@@ to the prisoners whenever she needs release.
+					<<set $slaves[$i].trust += 1, $slaves[$i].need = 0>>
+					<<saRulesRapeFetish>>
+					<<saRulesRapeDiscoversFetish>>
+					<<saRulesPermissiveDrugEffects>>
+				<</if>> /* closes releaseRules not restrictive */
+			<</if>>
+
+			She is @@.hotpink;very happy@@ with her private room in $cellblockName and @@.mediumaquamarine;trusts@@ you a bit more for placing her in charge of it.
+			<<set $slaves[$i].devotion += 1, $slaves[$i].trust += 1>>
+	
+			<<if ($slaves[$i].attrKnown == 0)>>
+				<<if ($week-$slaves[$i].weekAcquired > 4) && $slaves[$i].energy > 20>>
+					<<set $slaves[$i].attrKnown = 1>>
+					<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> has been monitoring her as she oversees the prisoners, analyzing her preferences. It seems she is
+					<<saRulesAttractionDiscovery>>
+				<</if>>
+			<</if>>
+
+			She does her best for you, so she frequently deserves a reward and never needs to be punished.
+			<<set _punishments = 0>>
+			<<set _rewards = 3>>
+			
+			<<if _rewards > 0>>
+				<<switch $slaves[$i].standardReward>>
+				<<case "relaxation">>
+					She's given free time, which she
+					<<if $spa != 0>>
+						usually spends in $spaName<<if $Attendant != 0>> enjoying $Attendant.slaveName's care<</if>>.
+					<<else>>
+						usually spends relaxing in her room<<if $CellBiIDs.length > 1>> teaching a disobiediant how to properly use her mouth<</if>>.
+					<</if>>
+					<<if $slaves[$i].relationship > 0>>
+						She often asks to save these breaks so she can spend them with her <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>wife<</if>>.
+					<</if>>
+					These breaks are @@.green;good for her.@@
+					<<set $slaves[$i].health += _rewards>>
+				<<case "drugs">>
+					She's @@.hotpink;rewarded@@ with hits of mild recreational drugs, which @@.red;isn't healthy,@@ but helps bind her to you strongly.
+					<<set $slaves[$i].health -= _rewards>>
+					<<set $slaves[$i].devotion += _rewards*2>>
+				<<case "orgasm">>
+					She's @@.hotpink;rewarded@@ with
+					<<if $slaves[$i].clitPiercing >= 3>>
+						sustained orgasm from her <<if $slaves[$i].dick == 0>>clit<<else>>dick<</if>> piercing,
+					<<elseif $activeSlave.releaseRules == "sapphic">>
+						immediate sex with any nearby slave,
+					<<else>>
+						a quick climax from a vibrator,
+					<</if>>
+					@@.green;boosting her libido.@@
+					<<if $slaves[$i].energy < 98>><<set $slaves[$i].energy += _rewards>><</if>>
+					<<set $slaves[$i].devotion += _rewards>>
+				<<default>>
+					She's @@.hotpink;rewarded@@
+					<<if (_punishments > 0) && ($slaves[$i].standardReward == "situational")>>
+						and @@.gold;punished@@
+					<</if>>
+					situationally, letting her develop normally.
+					<<set $slaves[$i].devotion += _rewards>>
+				<</switch>>
+			<</if>>
+		<<case "be confined in the cellblock">>
+			<<if $Wardeness != 0 && canPenetrate($Wardeness)>>
+				<<set _wardenFunTimes = random(0,5)>>
+				<<set $slaves[$i].need -= (10*_wardenFunTimes)>>
+			<</if>>
+			<<if $slaves[$i].devotion < -50>>
+				is so unhappy that she has little interest in getting off, making the rule restricting her sexual outlets superfluous.
+				<<set $slaves[$i].need = 0>>
+			<<elseif $slaves[$i].energy <= 20>>
+				is frigid and has little interest in getting off, making the rule restricting her sexual outlets superfluous.
+				<<set $slaves[$i].need = 0>>
+			<<elseif $slaves[$i].relationship == -3>>
+				You make sure your troublesome wife's sexual needs are handled, openly, in the middle of $cellblockName, where everyone can see, hear, and smell your dominance.
+				<<set $slaves[$i].need = 0>>
+				<<if $PC.dick == 1 && $slaves[$i].eggType == "human" && canGetPregnant($slaves[$i]) && (($slaves[$i].vagina > 0 && $slaves[$i].ovaries == 1)||($slaves[$i].anus != 0 && $slaves[$i].mpreg == 1))>>
+					<<KnockMeUp $slaves[$i] 10 0 -1 1>>
+					<<if ($slaves[$i].vagina > 0 && $slaves[$i].ovaries == 1)>>
+						<<set $slaves[$i].vaginalCount += 7, $vaginalTotal += 7>>
+					<<else>>
+						<<set $slaves[$i].analCount += 7, $analTotal += 7>>
+					<</if>>
+					<<if $slaves[$i].preg > 0>>
+						As an added show, you @@.lime;proudly display her positive pregnancy@@ test for all to see.
+					<</if>>
+				<<elseif canDoVaginal($slaves[$i]) && $slaves[$i].vagina > 0>>
+					<<set $slaves[$i].vaginalCount += 7, $vaginalTotal += 7>>
+				<<elseif canDoAnal($slaves[$i]) && $slaves[$i].anus > 0>>
+					<<set $slaves[$i].analCount += 7, $analTotal += 7>>
+				<</if>>
+			<<elseif $slaves[$i].need < $slaves[$i].energy*0.5>>
+				<<if $Wardeness != 0 && canPenetrate($Wardeness)>>
+					<<SimpleSlaveFucking $slaves[$i] _wardenFunTimes>>
+					<<set $slaves[_FLs].penetrativeCount += _wardenFunTimes, $penetrativeTotal += _wardenFunTimes>>
+					<<if _wardenFunTimes > 0 && canImpreg($slaves[$i], $Wardeness) && ($cellblockWardenCumsInside == 1 || $Wardeness.fetish == "mindbroken")>>
+						<<KnockMeUp $slaves[$i] 10 2 $Wardeness.ID 1>>
+						<<if ($slaves[$i].vagina > 0 && $slaves[$i].ovaries == 1)>>
+							<<set $slaves[$i].vaginalCount++, $vaginalTotal++>>
+						<<else>>
+							<<set $slaves[$i].analCount++, $analTotal++>>
+						<</if>>
+						<<set $slaves[_FLs].penetrativeCount += 1, $penetrativeTotal += 1>>
+					<</if>>
+				<</if>>
+				<<if ($slaves[$i].devotion <= 20)>>
+					gets off at work despite her reluctance, @@.hotpink;habituating her to sexual slavery.@@
+					<<set $slaves[$i].devotion += 1>>
+					<<if ($slaves[$i].trust > -20) && ($slaves[$i].devotion <= 20)>>
+						She hates herself for climaxing, and knows the mild aphrodisiacs in the food are forcing her arousal, @@.gold;frightening her.@@
+						<<set $slaves[$i].trust -= 1>>
+					<</if>>
+					<<set $slaves[$i].need -= 20>>
+				<</if>>
+			<<else>>
+				<<if $Wardeness != 0 && canPenetrate($Wardeness)>>
+					<<SimpleSlaveFucking $slaves[$i] _wardenFunTimes>>
+					<<set $slaves[_FLs].penetrativeCount += _wardenFunTimes, $penetrativeTotal += _wardenFunTimes>>
+					<<if _wardenFunTimes > 0 && canImpreg($slaves[$i], $Wardeness) && ($cellblockWardenCumsInside == 1 || $Wardeness.fetish == "mindbroken")>>
+						<<KnockMeUp $slaves[$i] 10 2 $Wardeness.ID 1>>
+						<<if ($slaves[$i].vagina > 0 && $slaves[$i].ovaries == 1)>>
+							<<set $slaves[$i].vaginalCount++, $vaginalTotal++>>
+						<<else>>
+							<<set $slaves[$i].analCount++, $analTotal++>>
+						<</if>>
+						<<set $slaves[_FLs].penetrativeCount += 1, $penetrativeTotal += 1>>
+					<</if>>
+				<</if>>
+				<<if random(-100,0) > $slaves[$i].devotion>>
+					refuses to not touch herself and is @@.gold;severely punished@@ for illicit masturbation.
+					<<set $slaves[$i].trust -= 2, $slaves[$i].need -= 10>>
+				<<else>>
+					@@.gold;fears@@ trying to
+					<<if ["chastity", "combined chastity"].includes($slaves[$i].dickAccessory)>>
+						touch herself
+					<<elseif canAchieveErection($slaves[$i])>>
+						jack off
+					<<else>>
+						touch herself
+					<</if>>
+					to get relief when she knows what the consequences are.
+					<<set $slaves[$i].trust -= 1>>
+				<</if>>
+			<</if>>
+
+			<<if $slaves[$i].voice == 0>>
+				Living as a mute @@.hotpink;molds her@@ to your will.
+				<<set $slaves[$i].devotion += 1>>
+			<<elseif $slaves[$i].lips > 95>>
+				Being unable to speak through her facepussy @@.hotpink;molds her@@ to your will.
+				<<set $slaves[$i].devotion += 1>>
+			<<elseif $slaves[$i].speechRules == "restrictive">>
+				Living under enforced silence @@.hotpink;molds her@@ to your will.
+				<<set $slaves[$i].devotion += 1>>
+			<</if>>
+
+			<<switch $cellblockDecoration>>
+			<<case "Degradationist">>
+				She expected spare living conditions. In reality, they are far worse. @@.gold;Not one moment goes by that she isn't filled with terror.@@
+				<<set $slaves[$i].trust -= 3>>
+			<<case "Paternalist">>
+				She expected far worse living conditions, and while still resistant, @@.hotpink;finds herself more willing to obey.@@ 
+				<<set $slaves[$i].devotion += 1>>
+			<<case "Pastoralist">>
+				She expected the spare living conditions, but not the dietary supplements. She never anticipated @@.gold;you'd go this far@@ to force her into shape and is constantly reminded of her changes by just how small her cell feels with a belly full of milk.
+				<<set $slaves[$i].trust -= 2>>
+			<<case "Body Purist">>
+				She expected the spare living conditions, but not the excessive hydration. She never anticipated @@.gold;you'd go this far@@ to force her into shape and is constantly reminded of her changes by the fullness of her bladder.
+				<<set $slaves[$i].trust -= 2>>
+			<<case "Hedonistic">>
+				She expected the spare living conditions, but not the dietary supplements. She never anticipated @@.gold;you'd go this far@@ to force her into shape and is constantly reminded of her changes by just how small her cell feels with a belly full of food.
+				<<set $slaves[$i].trust -= 2>>
+			<<default>>
+				She expected the spare living conditions, but no matter how hard she tries to shut out her surroundings, @@.gold;they still wear down her will.@@
+				<<set $slaves[$i].trust -= 1>>
+			<</switch>>
+
+			<<if $slaves[$i].trust < -50>>
+				She's only obedient out of terror, so she sometimes needs to be punished.
+				<<set _punishments = 1>>
+				<<set _rewards = 0>>
+			<<else>>
+				She hates you too much to obey, so she needs constant punishment.
+				<<set _punishments = 3>>
+				<<set _rewards = 0>>
+			<</if>>
+
+			<<if _punishments > 0>>
+				<<switch $slaves[$i].standardPunishment>>
+				<<case "confinement">>
+					When she disobeys, she @@.gold;spends her day in solitary.@@
+					<<set $slaves[$i].trust -= 2*_punishments>>
+				<<case "whipping">>
+					When she disobeys, she's @@.gold;whipped,@@ not hard enough to mark her, but hard enough to @@.red;hurt,@@ breaking her quickly.
+					<<set $slaves[$i].health -= _punishments>>
+					<<set $slaves[$i].trust -= 2*_punishments>>
+				<<case "chastity">>
+					When she disobeys, she's given a hit of mild aphrodisiacs and @@.gold;left to squirm without release,@@ @@.red;reducing her libido@@ but breaking her to @@.hotpink;sexual obedience.@@
+					<<if $slaves[$i].energy > 2>><<set $slaves[$i].energy -= 2*_punishments>><</if>>
+					<<set $slaves[$i].devotion += _punishments>>
+					<<set $slaves[$i].trust -= _punishments>>
+				<<default>>
+					<<if (_rewards == 0) || ($slaves[$i].standardReward != "situational")>>
+						When she disobeys, she's @@.gold;punished@@ situationally, letting her develop normally.
+					<</if>>
+					<<set $slaves[$i].trust -= _punishments>>
+				<</switch>>
+			<</if>>
 		<<default>>
 			<<if $slaves[$i].devotion < -50>>
 				is so unhappy that she has little interest in getting off<<if ($slaves[$i].releaseRules != "permissive")>>, making the rule restricting her sexual outlets superfluous<</if>>.
diff --git a/src/uncategorized/slaveInteract.tw b/src/uncategorized/slaveInteract.tw
index 8155e917f4c2c353a26df58fde6397d540afd08a..7f0df0e07808c77a277bc312fb6c73a7d075aff5 100644
--- a/src/uncategorized/slaveInteract.tw
+++ b/src/uncategorized/slaveInteract.tw
@@ -124,7 +124,7 @@
 		<</if>>
 		| [[Use another slave to impregnate her|FSlaveImpreg]]
 	<</if>>
-	<<if $activeSlave.assignment != "work in the dairy" && $activeSlave.assignment != "be confined in the arcade">>
+	<<if $activeSlave.assignment != "work in the dairy" && $activeSlave.assignment != "be confined in the arcade" && $activeSlave.assignment != "be confined in the cellblock">>
 		<<if $enema == 1>>
 			<<if ($activeSlave.inflation < 3 && $activeSlave.pregKnown == 0 && $activeSlave.bellyImplant < 1500) || ($activeSlave.inflation < 1)>>
 				<<if $activeSlave.inflationType == "water" || $activeSlave.inflationType == "none">>
@@ -167,7 +167,7 @@
 		<</if>>
 	<</if>>
 	<<if $activeSlave.inflation == 0 && $activeSlave.bellyImplant < 1500>>
-		<<if $activeSlave.assignment != "work in the dairy" || $activeSlave.assignment != "be confined in the arcade">>
+		<<if $activeSlave.assignment != "work in the dairy" && $activeSlave.assignment != "be confined in the arcade" && $activeSlave.assignment != "be confined in the cellblock">>
 			| [[Use another slave to forcefeed her|SlaveOnSlaveFeedingWorkAround]]
 			<<if $buckets == 1>>
 				| <<link "Make her consume two liters of slave food">><<set $activeSlave.inflationType = "food">><<set $activeSlave.inflationMethod = 1>><<set $activeSlave.inflation = 1>><<replace "#miniscene">><<include "forceFeeding">><br><</replace>><<SlaveInteractImpreg>><<SlaveInteractFertility>><</link>>
@@ -333,7 +333,7 @@
 		| <<link "Fuck its rear hole">><<replace "#miniscene">><<FFuckdollAnal>><br><</replace>><</link>>
 	<</if>>
 <</if>>
-<<if _activeSlaveRepSacrifice > 0 && $arcologies[0].FSPaternalist != "unset" && $activeSlave.breedingMark == 0>>
+<<if _activeSlaveRepSacrifice > 0 && $arcologies[0].FSPaternalist == "unset" && $activeSlave.breedingMark == 0>>
 	<<set _activeSlaveRepSacrifice = repGainSacrifice()>>
 	| [[Sacrifice her on the altar|Aztec Slave Sacrifice][$sacrificeType = "life"]] //This will kill her and gain you _activeSlaveRepSacrifice reputation//
 <</if>>
diff --git a/src/utility/assignWidgets.tw b/src/utility/assignWidgets.tw
index 9584f08965458327c1029831d61c6256878cda6f..7744aff956f7b4c5fbcc56fc9944ab12a9f36e9a 100644
--- a/src/utility/assignWidgets.tw
+++ b/src/utility/assignWidgets.tw
@@ -27,6 +27,12 @@
 			<</switch>>
 		<<case "be confined in the cellblock" "cellblock">>
 			<<set $args[0].assignment = "be confined in the cellblock", $args[0].assignmentVisible = 0, $cellblockSlaves++, $CellBiIDs.push(_wID)>>
+			<<switch $cellblockDecoration>>
+			<<case "Paternalist">>
+				<<set $args[0].livingRules = "normal">>
+			<<default>>
+				<<set $args[0].livingRules = "spare">>
+			<</switch>>
 		<<case "get treatment in the clinic" "clinic">>
 			<<set $args[0].assignment = "get treatment in the clinic",  $args[0].assignmentVisible = 0, $clinicSlaves++, $CliniciIDs.push(_wID)>>
 			<<switch $clinicDecoration>>
@@ -124,6 +130,10 @@
 			<<set $BrothiIDs.delete(_wID), $brothelSlaves-->>
 		<<case "be confined in the cellblock" "cellblock">>
 			<<set $args[0].assignment = "rest">>
+			<<if ($slaves[$i].inflation > 0)>>
+				<<set $args[0].inflation = 0, $args[0].inflationType = "none", $args[0].inflationMethod = 0>>
+				<<SetBellySize $slaves[$i]>>
+			<</if>>
 			<<set $CellBiIDs.delete(_wID), $cellblockSlaves-->>
 		<<case "get treatment in the clinic" "clinic">>
 			<<set $args[0].assignment = "rest">>
diff --git a/src/utility/miscWidgets.tw b/src/utility/miscWidgets.tw
index 445048f40e9d7b21201cce5349cdcc06ce85087e..e0e96f1a5e9405477e373c6fcb211487215285e1 100644
--- a/src/utility/miscWidgets.tw
+++ b/src/utility/miscWidgets.tw
@@ -489,7 +489,7 @@
 		<</if>>
 		| [[Use another slave to impregnate her|FSlaveImpreg]]
 	<</if>>
-	<<if $activeSlave.assignment != "work in the dairy" && $activeSlave.assignment != "be confined in the arcade">>
+	<<if $activeSlave.assignment != "work in the dairy" && $activeSlave.assignment != "be confined in the arcade" && $activeSlave.assignment != "be confined in the cellblock">>
 		<<if $enema == 1>>
 			<<if ($activeSlave.inflation < 3 && $activeSlave.pregKnown == 0 && $activeSlave.bellyImplant < 1500) || ($activeSlave.inflation < 1)>>
 				<<if $activeSlave.inflationType == "water" || $activeSlave.inflationType == "none">>
@@ -532,7 +532,7 @@
 		<</if>> /* dairyPiping == 1 */
 	<</if>> /* assigned to dairy or arcade */
 	<<if $activeSlave.inflation == 0 && $activeSlave.bellyImplant < 1500>>
-		<<if $activeSlave.assignment != "work in the dairy" || $activeSlave.assignment != "be confined in the arcade">>
+		<<if $activeSlave.assignment != "work in the dairy" && $activeSlave.assignment != "be confined in the arcade" && $activeSlave.assignment != "be confined in the cellblock">>
 			| [[Use another slave to forcefeed her|SlaveOnSlaveFeedingWorkAround]]
 			<<if $buckets == 1>>
 				| <<link "Make her consume two liters of slave food">><<set $activeSlave.inflationType = "food">><<set $activeSlave.inflationMethod = 1>><<set $activeSlave.inflation = 1>><<replace "#miniscene">><<include "forceFeeding">><br><</replace>><<SlaveInteractImpreg>><<SlaveInteractFertility>><</link>>