diff --git a/src/js/utilJS.js b/src/js/utilJS.js
index 47ee3a895c5d17e44c145b26da707d0c3fdba2fc..ac9ffd0c2005f65de3f805eaa25d75f7caf383e3 100644
--- a/src/js/utilJS.js
+++ b/src/js/utilJS.js
@@ -561,9 +561,9 @@ window.budgetLine = function(category, title) {
 	let expenses;
 	let profits;
 	if (passage() === 'Rep Budget') {
-		income = V.lastWeeksRepIncome;
-		expenses = V.lastWeeksRepExpenses;
-		profits = V.lastWeeksRepProfits;
+		income = '$lastWeeksRepIncome';
+		expenses = '$lastWeeksRepExpenses';
+		profits = '$lastWeeksRepProfits';
 
 		return `<<if ${income}.${category} || ${expenses}.${category}>><tr>\
 		<td>${title}</td>\
@@ -573,9 +573,9 @@ window.budgetLine = function(category, title) {
 		<td><<print repFormat(${profits}.${category})>></td>\
 		</tr><</if>>`;
 	} else if (passage() === 'Costs Budget') {
-		income = V.lastWeeksCashIncome;
-		expenses = V.lastWeeksCashExpenses;
-		profits = V.lastWeeksCashProfits;
+		income = '$lastWeeksCashIncome';
+		expenses = '$lastWeeksCashExpenses';
+		profits = '$lastWeeksCashProfits';
 
 		return `<<if ${income}.${category} || ${expenses}.${category}>><tr>\
 		<td>${title}</td>\
diff --git a/src/pregmod/sePlayerBirth.tw b/src/pregmod/sePlayerBirth.tw
index 069b3f73cf4552ff838314383e1ec88d305a8372..012809d73724ae5ffb3bd061e84c5f6552a77dc6 100644
--- a/src/pregmod/sePlayerBirth.tw
+++ b/src/pregmod/sePlayerBirth.tw
@@ -43,7 +43,7 @@ PC.pregSource documentation
 <<set $PC.preg = 0, $PC.pregKnown = 0, $PC.labor = 0, $PC.births += _curBabies>>
 
 /* setting the tallies for each type of child born */
-<<set _others = 0, _self = 0, _citizens = 0, _oldMaster = 0, _arcOwner = 0, _clients = 0, _elite = 0, _lab = 0, _animals = 0, _futaS = 0, _slavesLength = 0, _babies = []>>
+<<set _others = 0, _self = 0, _citizens = 0, _oldMaster = 0, _arcOwner = 0, _clients = 0, _elite = 0, _lab = 0, _futaS = 0, _slavesLength = 0, _babies = []>>
 <<for _spb = 0; _spb < $PC.curBabies.length; _spb++>>
 	<<if $PC.curBabies[_spb].fatherID == 0>>
 		<<set _others++>>