From 0990a7f8d4acf6c5633cad3f61229b0d1672ca4f Mon Sep 17 00:00:00 2001
From: pregmodfan <pregmodfan@cock.li>
Date: Thu, 15 Feb 2018 23:50:21 +0200
Subject: [PATCH] broodmothers better backward compatibility

---
 src/js/wombJS.tw | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/src/js/wombJS.tw b/src/js/wombJS.tw
index e597fda5b3c..a1dbe68df29 100644
--- a/src/js/wombJS.tw
+++ b/src/js/wombJS.tw
@@ -32,10 +32,20 @@ window.WombInit = function(actor) //Init womb system.
 	   actor.womb = [];
     }
 
-    if (actor.womb.length != actor.pregType) //backward compatibility setup. Fully accurate for normal pregnancy only, sorry but for already present broodmothers it's too hard to calculate.
+    if (actor.womb.length != actor.pregType && actor.broodmother == 0) //backward compatibility setup. Fully accurate for normal pregnancy only.
     {
         WombImpregnate(actor, actor.pregType, 0, actor.preg);
     }
+    elseif (actor.womb.length != actor.pregType && actor.broodmother == 1) //sorry but for already present broodmothers it's impossible to calculate fully, aproximation used.
+    {
+        var i, pw = actor.preg;
+        if (pw > 40)
+            pw = 40; //to avoid disaster.
+        for (i=0; i<pw; i++)
+        {
+            WombImpregnate(actor, 1, actor.pregSource, i); // setting 1 fetus for every week, up to 40 at max.
+        }
+    }
 }
 
 window.WombImpregnate = function(actor, fCount, fatherID, age)
-- 
GitLab