diff --git a/src/endWeek/economics/arcmgmt.js b/src/endWeek/economics/arcmgmt.js
index bfa7862d04b7ebd80d44b1343402d550a4407419..44da2d19efa61c81fb31db92e9ed89a9f37a1318 100644
--- a/src/endWeek/economics/arcmgmt.js
+++ b/src/endWeek/economics/arcmgmt.js
@@ -453,7 +453,7 @@ App.EndWeek.arcManagement = function() {
 			if ((V.PC.skill.trading >= 100) || (V.PC.career === "arcology owner")) {
 				r.push(`Your <span class="skill player">business focus and your experience</span> allow you to greatly assist in advancing the arcology's prosperity.`);
 				AWeekGrowth += 2;
-			} else if (V.PC.visualAge >= 16 || random(1, 100 > 60)) {
+			} else if (V.PC.visualAge >= 16 || random(1, 100) > 60) {
 				r.push(`Your business focus allows you to help improve the arcology's prosperity.`);
 				AWeekGrowth++;
 			}
diff --git a/src/pregmod/surrogacy.js b/src/pregmod/surrogacy.js
index e85d84f3e9bf336e8efe05c750e7f606e9ea76bd..4affba58d49674adebe1618973744670efcd6cfd 100644
--- a/src/pregmod/surrogacy.js
+++ b/src/pregmod/surrogacy.js
@@ -95,9 +95,9 @@ App.UI.surrogacy = function() {
 				r.push(`Since the surgery required only a local anesthetic, you are very aware that you are now carrying ${slave.slaveName}'s ${child}. You slowly`);
 				if (canWalk(V.PC)) {
 					r.push(`rise to your feet, a hand to`);
-				} else if (canMove(PC)) {
+				} else if (canMove(V.PC)) {
 					r.push(`rise to a sitting position, a hand to`);
-				} else if (isMovable(PC)) {
+				} else if (isMovable(V.PC)) {
 					r.push(`run a hand across`);
 				}
 				r.push(`your lower belly, appreciating the new ${bulk ? "lives" : "life"} growing within you.`);