diff --git a/src/pregmod/incubator.tw b/src/pregmod/incubator.tw
index f88073e03fa00369354dd33b58d04c1eb4b110c3..6bc095da5dc9dcf54f75f5647c50f84a65c3518f 100644
--- a/src/pregmod/incubator.tw
+++ b/src/pregmod/incubator.tw
@@ -431,7 +431,7 @@ Target age for release: <<textbox "$targetAge" $targetAge "Incubator">> [[Minimu
 		<<if $incubatorUpgradeMuscles == 1>>
 			<br>
 			<<if $incubatorMusclesSetting == 2>>
-				$His strength levels are purposefully set higher than recommended; excessive muscle gain likely.
+				$His strength levels are purposefully set higher than recommended; $he is likely to have excessive musculature.
 			<<elseif $incubatorMusclesSetting == 1>>
 				$His musculature is being carefully managed; $he will be released with near normal strength.
 			<<elseif $incubatorMusclesSetting == 0>>
@@ -441,7 +441,7 @@ Target age for release: <<textbox "$targetAge" $targetAge "Incubator">> [[Minimu
 		<<if $incubatorUpgradeGrowthStims == 1>>
 			<br>
 			<<if $incubatorGrowthStimsSetting == 2>>
-				$He is being injected with higher than recommended doses of stimulants; exceeding expected final height is likely.
+				$He is being injected with higher than recommended doses of stimulants; $he is likely to be much taller than expected.
 			<<elseif $incubatorGrowthStimsSetting == 1>>
 				$He is injected with the recommended dosage of stimulants; $he will grow to $his full expected height.
 			<<elseif $incubatorGrowthStimsSetting == 0>>
@@ -451,7 +451,7 @@ Target age for release: <<textbox "$targetAge" $targetAge "Incubator">> [[Minimu
 		<<if $incubatorUpgradeReproduction == 1>>
 			<br>
 			<<if $incubatorReproductionSetting == 2>>
-				$His hormone levels are purposefully set higher than recommended; over-active reproductive systems likely.
+				$His hormone levels are purposefully set higher than recommended; $his reproductive systems are likely to be over-active.
 			<<elseif $incubatorReproductionSetting == 1>>
 				$His hormone levels are being carefully managed; $he will be released with fully functional reproductive organs.
 			<<elseif $incubatorReproductionSetting == 0>>
@@ -505,7 +505,7 @@ Target age for release: <<textbox "$targetAge" $targetAge "Incubator">> [[Minimu
 			<br>
 			<<if $tanks[$i].ovaries == 0 && $tankOrgans.ovaries != 1>>
 				<<link "Prepare ovaries">>
-					<<run cashX(forceNeg(10000), "incubator", $tanks[$i])>>
+					<<run cashX(-10000, "incubator", $tanks[$i])>>
 					<<set _newOrgan = {type: "ovaries", weeksToCompletion: "10", ID: 0}>>
 					<<set _newOrgan.ID = $tanks[$i].ID>>
 					<<set $incubatorOrgans.push(_newOrgan)>>
@@ -514,7 +514,7 @@ Target age for release: <<textbox "$targetAge" $targetAge "Incubator">> [[Minimu
 			<</if>>
 			<<if $tanks[$i].dick == 0 && $tankOrgans.penis != 1>>
 				<<link "Prepare penis">>
-					<<run cashX(forceNeg(5000), "incubator", $tanks[$i])>>
+					<<run cashX(-5000, "incubator", $tanks[$i])>>
 					<<set _newOrgan = {type: "penis", weeksToCompletion: "5", ID: 0}>>
 					<<set _newOrgan.ID = $tanks[$i].ID>>
 					<<set $incubatorOrgans.push(_newOrgan)>>
@@ -524,7 +524,7 @@ Target age for release: <<textbox "$targetAge" $targetAge "Incubator">> [[Minimu
 			<<if $tanks[$i].balls == 0 && $tankOrgans.testicles != 1>>
 				|
 				<<link "Prepare testicles">>
-					<<run cashX(forceNeg(5000), "incubator", $tanks[$i])>>
+					<<run cashX(-5000, "incubator", $tanks[$i])>>
 					<<set _newOrgan = {type: "testicles", weeksToCompletion: "10", ID: 0}>>
 					<<set _newOrgan.ID = $tanks[$i].ID>>
 					<<set $incubatorOrgans.push(_newOrgan)>>
@@ -534,7 +534,7 @@ Target age for release: <<textbox "$targetAge" $targetAge "Incubator">> [[Minimu
 			<<if $tanks[$i].eyes == -2 && $tankOrgans.eyes != 1>>
 				<br>$He appears to be blind:
 				<<link "Prepare eyes">>
-					<<run cashX(forceNeg(10000), "incubator", $tanks[$i])>>
+					<<run cashX(-10000, "incubator", $tanks[$i])>>
 					<<set _newOrgan = {type: "eyes", weeksToCompletion: "10", ID: 0}>>
 					<<set _newOrgan.ID = $tanks[$i].ID>>
 					<<set $incubatorOrgans.push(_newOrgan)>>
@@ -544,7 +544,7 @@ Target age for release: <<textbox "$targetAge" $targetAge "Incubator">> [[Minimu
 			<<if $tanks[$i].voice == 0 && $tankOrgans.voicebox != 1>>
 				<br>$He appears to be mute:
 				<<link "Prepare vocal cords">>
-					<<run cashX(forceNeg(5000), "incubator", $tanks[$i])>>
+					<<run cashX(-5000, "incubator", $tanks[$i])>>
 					<<set _newOrgan = {type: "voicebox", weeksToCompletion: "5", ID: 0}>>
 					<<set _newOrgan.ID = $tanks[$i].ID>>
 					<<set $incubatorOrgans.push(_newOrgan)>>