diff --git a/src/npc/startingGirls/startingGirls.js b/src/npc/startingGirls/startingGirls.js
index 10c209d4dca62a800339ec28c6379b4630d5bce6..01c6faca6df6c890ca22f7d8f02dca82f1f15c7b 100644
--- a/src/npc/startingGirls/startingGirls.js
+++ b/src/npc/startingGirls/startingGirls.js
@@ -498,7 +498,7 @@ App.StartingGirls.applyPlayerOrigin = function(slave) {
 				slave.origin = "$He was the result of unprotected sex with a customer. $His mother abandoned your child on the brothel's doorstep.";
 				slave.custom.tattoo = "$He has your ID number tattooed on $his right breast.";
 			} else {
-				if (slave.actualAge >= V.PC.age + 10) {
+				if (slave.actualAge >= V.PC.actualAge + 10) {
 					slave.origin = "$He was a fellow prostitute who was like a parent to you.";
 				} else {
 					slave.origin = "$He was a fellow underage prostitute you often played with.";
@@ -1170,7 +1170,7 @@ App.StartingGirls.profile = function(slave) {
 		} else {
 			r.push(" young age requires paying the full penalty.");
 		}
-		option.addComment(`<span class=warning>${r.join(" ")}</span>`);
+		option.addComment(`<span class="warning">${r.join(" ")}</span>`);
 	}
 
 	options.addOption(`${His} nationality is`, "nationality", slave).showTextBox()
@@ -1244,7 +1244,7 @@ App.StartingGirls.mental = function(slave) {
 		} else {
 			r.push("young age requires paying the full penalty.");
 		}
-		option.addComment(`<span class=warning>${r.join(" ")}</span>`);
+		option.addComment(`<span class="warning">${r.join(" ")}</span>`);
 	}
 
 	options.addOption("Trust", "trust", slave).showTextBox()