diff --git a/src/endWeek/saWhore.js b/src/endWeek/saWhore.js
index 9ea96fa1546824a280514a584e598692710d8202..28c5deb6149eb5fd6dd2cec5ca3f64f59b9a3dd8 100644
--- a/src/endWeek/saWhore.js
+++ b/src/endWeek/saWhore.js
@@ -1040,7 +1040,7 @@ window.saWhore = (function saWhore() {
 			}
 		}
 
-		if (arcology.FSRepopulationFocusMilfPolicy === 1 && slave.birthsTotal > 0) {
+		if (arcology.FSRepopulationFocusMilfPolicy === 1 && slave.counter.birthsTotal > 0) {
 			r += ` Slaves that have had children are hot right now making ${him} quite the appealing MILF.`;
 		}
 
diff --git a/src/js/surgery.js b/src/js/surgery.js
index 24765b27190b36d5e4970b00fcc9ab88914f72e7..88f7b60ff4e86fb5b0b09f4f8223e92d9de5fcb3 100644
--- a/src/js/surgery.js
+++ b/src/js/surgery.js
@@ -190,7 +190,7 @@ App.Medicine.Surgery.ListHelpers = class {
 	 */
 	fillUp(volume) {
 		return App.Medicine.Surgery.makeOption(this._keys.fillUp, "Add inert filler", volume,
-			`add${this._showCCs ? ` ${volume}cc of` : 'some'} inert filler to each of ${this._pronouns.his} ${this._bodyPart} implants`,
+			`add ${this._showCCs ? `${volume}cc of` : 'some'} inert filler to each of ${this._pronouns.his} ${this._bodyPart} implants`,
 			slave => {
 				slave[`${this._bodyPart}Implant`] += volume;
 				slave[this._bodyPart] += volume;
@@ -205,7 +205,7 @@ App.Medicine.Surgery.ListHelpers = class {
 	 */
 	drain(volume) {
 		return App.Medicine.Surgery.makeOption(this._keys.drain, `Drain ${volume}cc`, -volume,
-			`drain${this._showCCs ? ` ${volume}cc of` : 'some'} inert filler from ${this._pronouns.his} ${this._bodyPart} implants`,
+			`drain ${this._showCCs ? `${volume}cc of` : 'some'} inert filler from ${this._pronouns.his} ${this._bodyPart} implants`,
 			slave => {
 				slave[`${this._bodyPart}Implant`] -= volume;
 				slave[this._bodyPart] -= volume;
diff --git a/src/uncategorized/neighborInteract.tw b/src/uncategorized/neighborInteract.tw
index d066e1681deeeb39f1d8c9ba9f53819426de350f..72c832bb4fa4517885a7d5c59373ea915438a65f 100644
--- a/src/uncategorized/neighborInteract.tw
+++ b/src/uncategorized/neighborInteract.tw
@@ -30,7 +30,7 @@ You have <<print $arcologies.length-1>> neighbors. <br><br>
 <</if>>
 
 <br>
-<<if $arcologies[0].influenceTarget == -1>> 
+<<if $arcologies[0].influenceTarget == -1>>
 	You are not using your arcology's culture to attempt to influence neighboring arcologies' development.
 <<else>>
 	<<set _nei = $arcologies.findIndex(function(s) { return s.direction == $arcologies[0].influenceTarget; })>>
@@ -178,7 +178,7 @@ You have <<print $arcologies.length-1>> neighbors. <br><br>
 <<capture _currentNeighbor>>
 	<<= App.currentAgent()>>
 	<<set $arcologies[_currentNeighbor].prosperity = Math.clamp($arcologies[_currentNeighbor].prosperity, 1, 300)>>
-	<br>You own $arcologies[_currentNeighbor].PCminority% of 
+	<br>You own $arcologies[_currentNeighbor].PCminority% of
 	<<link "$arcologies[_currentNeighbor].name">>
 	<<replace "#Security">>
 	<br>[[Back to the main diplomacy page|Neighbor Interact]]
@@ -197,7 +197,7 @@ You have <<print $arcologies.length-1>> neighbors. <br><br>
 			<<if ($arcologies[_currentNeighbor].ownership + $arcologies[_currentNeighbor].PCminority + $arcologies[_currentNeighbor].minority <= 90)>>
 				<<if $cash > 10*(_ownershipCost)>>
 					| <<link "10%" "Neighbor Interact">>
-						<<run cashX(forceNeg(1*(500*Math.trunc($arcologies[_currentNeighbor].prosperity*(1+($arcologies[_currentNeighbor].demandFactor/100))))), "war")>>
+						<<run cashX(forceNeg(10*(500*Math.trunc($arcologies[_currentNeighbor].prosperity*(1+($arcologies[_currentNeighbor].demandFactor/100))))), "war")>>
 						<<run cashX(-10000, "war")>>
 						<<set $arcologies[_currentNeighbor].PCminority += 10>>
 						<<set $arcologies[_currentNeighbor].demandFactor += 10*5>>
@@ -206,7 +206,7 @@ You have <<print $arcologies.length-1>> neighbors. <br><br>
 				<</if>>
 			<</if>>
 		<</if>>
-		
+
 		<<if $arcologies[_currentNeighbor].PCminority > 0>>
 			<br>&nbsp;
 			<<link "Sell" "Neighbor Interact">>
@@ -236,7 +236,7 @@ You have <<print $arcologies.length-1>> neighbors. <br><br>
 		<<if $arcologies[_currentNeighbor].direction !== $arcologies[0].embargoTarget>>
 			<br>[[Target them for economic warfare|Neighbor Interact][$arcologies[0].embargoTarget = $arcologies[_currentNeighbor].direction]]
 		<</if>>
-		
+
 		<<if $PC.hacking > 0>>
 			<<if $arcologies[_currentNeighbor].direction !== $arcologies[0].CyberEconomicTarget>>
 				<br>[[Target them for cyber economic warfare|Neighbor Interact][$arcologies[0].CyberEconomicTarget = $arcologies[_currentNeighbor].direction]]
@@ -718,4 +718,4 @@ You have <<print $arcologies.length-1>> neighbors. <br><br>
 	<</if>>
 <</capture>>
 <</for>>
-</span>
\ No newline at end of file
+</span>