diff --git a/src/pregmod/incubator.tw b/src/pregmod/incubator.tw
index 0f2a9172a6d5d0f22f35c1e46092dbfbf83e4758..16e7f1a39e4ef5b747db794f20f79458afcfab74 100644
--- a/src/pregmod/incubator.tw
+++ b/src/pregmod/incubator.tw
@@ -22,12 +22,12 @@ $incubatorNameCaps is a clean, cold hall designed to be lined with tanks and the
 <</if>>
 
 <br>It can support $incubator <<if $incubator == 1>>child<<else>>children<</if>>.
+[[Add another incubation tank|Incubator][$cash -= Math.trunc(60000*$upgradeMultiplierArcology), $incubator += 1]] //Costs ¤<<print Math.trunc(60000*$upgradeMultiplierArcology)>> and will increase upkeep costs//
 <<if $freeTanks == 0>>
 	All of the tanks are currently occupied by growing children.
 <<elseif $incubator > 1 && $reservedChildren < $freeTanks>>
 	[[Remove an incubation tank|Incubator][$cash -= Math.trunc(10000*$upgradeMultiplierArcology), $incubator -= 1]] //Costs ¤<<print Math.trunc(10000*$upgradeMultiplierArcology)>> and will reduce upkeep costs//
 <</if>>
-[[Add another incubation tank|Incubator][$cash -= Math.trunc(60000*$upgradeMultiplierArcology), $incubator += 1]] //Costs ¤<<print Math.trunc(60000*$upgradeMultiplierArcology)>> and will increase upkeep costs//
 
 <br><br>
 Reserve an eligible mother-to-be's child to be placed in a tank upon birth. Of $incubator tanks, <<print $freeTanks>> <<if $freeTanks == 1>>is<<else>>are<</if>> unoccupied. Of those, $reservedChildren <<if $reservedChildren == 1>>tank is<<else>>tanks are<</if>> reserved.
diff --git a/src/uncategorized/RETS.tw b/src/uncategorized/RETS.tw
index 69a589264d04404857b3eb90d6cb09265b8e27f8..32fc7c653a76420e7336bbb6fce32745f7a35fa0 100644
--- a/src/uncategorized/RETS.tw
+++ b/src/uncategorized/RETS.tw
@@ -1314,7 +1314,7 @@ she adds impishly. Hearing this, $subSlave.slaveName lets the breast pop free of
 			using the slave's smashed-together buttocks to rub against.
 		<<else>>
 			giving her as hard a buttfuck as you can manage with $activeSlave.slaveName between you.
-			<<set $subSlave.analCount++, $subSlave++>>
+			<<set $subSlave.analCount++, $analTotal++>>
 			<<if $PC.dick == 1 && canGetPregnant($subSlave) && $subSlave.eggType == "human">>
 				<<KnockMeUp $subSlave 5 1 -1 1>>
 			<</if>>
diff --git a/src/uncategorized/corporationDevelopments.tw b/src/uncategorized/corporationDevelopments.tw
index 88019f60a139644c284a292cc8f47a63d0dfafd0..2df4babc673599dd35b5c4c6fe08b49aab907dbc 100644
--- a/src/uncategorized/corporationDevelopments.tw
+++ b/src/uncategorized/corporationDevelopments.tw
@@ -156,8 +156,12 @@ You hold $personalShares shares personally while $publicShares are publicly held
 <<if $personalShares-20000 > $publicShares>>
 	 <<link "20000">><<set $publicShares += 20000>><<set $corpCash += 20000*$sharePrice>><<set $sharePrice = (Math.trunc($sharePrice*random(90,95)))/100>><<replace "#CorpAction">><br><<print "The corporation issued 20000 new shares, driving the share price down massively.">><</replace>><</link>><</if>>
 
+<<set _PublicOwnershipPercentage = (Math.trunc($publicShares/$personalShares))*100>>	  	
+<<set _PrivateOwnershipPercentage = (Math.trunc($personalShares/$publicShares))*100>>
+	
 <br>Sell personal shares:
-<<if $personalShares-1000 > $publicShares>>
+<<if _PrivateOwnershipPercentage < 51>>//You cannot give up majority control.//<</if>>
+<<if _PrivateOwnershipPercentage > 51 && $personalShares-1000 > $publicShares>>
 	 <<link "1000">><<set $personalShares -= 1000>><<set $publicShares += 1000>><<set $cash += 1000*$sharePrice>><<set $sharePrice = (Math.trunc($sharePrice*random(90,95)))/100>><<replace "#CorpAction">><br><<print "You sold 1000 shares, driving the share price down slightly.">><</replace>><</link>><</if>>
 <<if $personalShares-5000 > $publicShares>>
 	 <<link "5000">><<set $personalShares -= 5000>><<set $publicShares += 5000>><<set $cash += 5000*$sharePrice>><<set $sharePrice = (Math.trunc($sharePrice*random(90,95)))/100>><<replace "#CorpAction">><br><<print "You sold 5000 shares, driving the share price down slightly.">><</replace>><</link>><</if>>
@@ -167,10 +171,10 @@ You hold $personalShares shares personally while $publicShares are publicly held
 	 <<link "15000">><<set $personalShares -= 15000>><<set $publicShares += 15000>><<set $cash += 10000*$sharePrice>><<set $sharePrice = (Math.trunc($sharePrice*random(90,95)))/100>><<replace "#CorpAction">><br><<print "You sold 15000 shares, driving the share price down slightly.">><</replace>><</link>><</if>>
 <<if $personalShares-20000 > $publicShares>>
 	 <<link "20000">><<set $personalShares -= 20000>><<set $publicShares += 20000>><<set $cash += 10000*$sharePrice>><<set $sharePrice = (Math.trunc($sharePrice*random(90,95)))/100>><<replace "#CorpAction">><br><<print "You sold 20000 shares, driving the share price down massively.">><</replace>><</link>><</if>>
-//You cannot give up majority control.//
 
 <br>Buy publicly held shares:
-<<if $publicShares >= 1000 && $cash >= 1000*$sharePrice>>
+<<if _PublicOwnershipPercentage <= 5>>//You cannot make the corporation privately held.//<</if>>
+<<if _PublicOwnershipPercentage < 49 && $publicShares > 1000 && $cash >= 1000*$sharePrice>>
 	  <<link "1000">><<set $personalShares += 1000>><<set $publicShares -= 1000>><<set $cash -= 1000*$sharePrice>><<set $sharePrice = (Math.trunc($sharePrice*random(105,110)))/100>><<replace "#CorpAction">><br><<print "You bought 1000 shares, driving the share price up slightly.">><</replace>><</link>><</if>>
 <<if $publicShares >= 5000 && $cash >= 5000*$sharePrice>>
 	  <<link "5000">><<set $personalShares += 5000>><<set $publicShares -= 5000>><<set $cash -= 5000*$sharePrice>><<set $sharePrice = (Math.trunc($sharePrice*random(105,110)))/100>><<replace "#CorpAction">><br><<print "You bought 5000 shares, driving the share price up slightly.">><</replace>><</link>><</if>>
@@ -180,7 +184,6 @@ You hold $personalShares shares personally while $publicShares are publicly held
 	  <<link "15000">><<set $personalShares += 15000>><<set $publicShares -= 15000>><<set $cash -= 15000*$sharePrice>><<set $sharePrice = (Math.trunc($sharePrice*random(105,110)))/100>><<replace "#CorpAction">><br><<print "You bought 15000 shares, driving the share price up slightly.">><</replace>><</link>><</if>>
 <<if $publicShares >= 20000 && $cash >= 20000*$sharePrice>>
 	  <<link "20000">><<set $personalShares += 20000>><<set $publicShares -= 20000>><<set $cash -= 20000*$sharePrice>><<set $sharePrice = (Math.trunc($sharePrice*random(105,110)))/100>><<replace "#CorpAction">><br><<print "You bought 20000 shares, driving the share price up massively.">><</replace>><</link>><</if>>
-//You cannot make the corporation privately held.//
 </span>
 
 <br>
diff --git a/src/uncategorized/seCoursing.tw b/src/uncategorized/seCoursing.tw
index 0e735d82c3fea76c2ccf0fe6bcc5d0a22d35c17a..fdedcab7bbe62e46d8a6e51ccb826c11c2feb96f 100644
--- a/src/uncategorized/seCoursing.tw
+++ b/src/uncategorized/seCoursing.tw
@@ -26,12 +26,15 @@ The rules have been explained to the hares: they're to be freed if they can reac
 <</if>>
 
 <<for $i = 0; $i < 3; $i++>>
-
+<br>
 <<if $i == 0>>
+	<br>
 	The first hare
 <<elseif $i == 1>>
+	<br>
 	The second hare
 <<else>>
+	<br>
 	The third and final hare
 <</if>>