From 070085d0301ded06f075efbbc87b27aeada9ef36 Mon Sep 17 00:00:00 2001
From: Pregmodder <pregmodder@gmail.com>
Date: Wed, 4 Dec 2019 21:11:09 -0500
Subject: [PATCH] unfucked playerdatatypecleanup

---
 src/js/datatypeCleanupJS.js | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/js/datatypeCleanupJS.js b/src/js/datatypeCleanupJS.js
index 93f2b904053..4e0a7f3aca0 100644
--- a/src/js/datatypeCleanupJS.js
+++ b/src/js/datatypeCleanupJS.js
@@ -1591,14 +1591,14 @@ window.PCDatatypeCleanup = function PCDatatypeCleanup() {
 	if (typeof PC.genes !== "string") {
 		PC.genes = "XY";
 	}
-	if (typeof PC.genes !== "string") {
-		PC.genes = "XY";
+	if (typeof PC.nationality !== "string") {
+		PC.genes = "Stateless";
 	}
 	if (typeof PC.race !== "string") {
 		PC.race = "white";
 	}
 	if (typeof PC.skin !== "string") {
-		PC.skin = "Stateless";
+		PC.skin = "light";
 	}
 	if (typeof PC.markings !== "string") {
 		PC.markings = "none";
@@ -1607,7 +1607,7 @@ window.PCDatatypeCleanup = function PCDatatypeCleanup() {
 		PC.hColor = "blonde";
 	}
 	if (typeof PC.eye.origColor !== "string") {
-		PC.nationality = "blue";
+		PC.eye.origColor = "blue";
 	}
 	PC.belly = Math.max(+PC.belly, 0) || 0;
 	PC.fertPeak = Math.clamp(+PC.fertPeak, 0, 4) || 0;
-- 
GitLab