From 7dde10201115b7bd21c2aa474cc9c85ac6228cf6 Mon Sep 17 00:00:00 2001
From: Pregmodder <pregmodder@gmail.com>
Date: Sun, 14 Apr 2019 02:21:40 -0400
Subject: [PATCH] fixed .realAge NaN

---
 src/js/wombJS.js | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/js/wombJS.js b/src/js/wombJS.js
index b8a7933835c..ac32ad21ba5 100644
--- a/src/js/wombJS.js
+++ b/src/js/wombJS.js
@@ -511,6 +511,7 @@ window.fetalSplit = function (actor, chance) {
 		if ((jsRandom(1, chance) >= chance) && s.splitted !== 1) {
 			nft = {};
 			nft.age = s.age;
+			nft.realAge = s.realAge;
 			nft.fatherID = s.fatherID;
 			nft.motherID = s.motherID;
 			nft.volume = s.volume;
-- 
GitLab