From bcd3d5dc355b0ebed56a41807694fa7ec8cd7841 Mon Sep 17 00:00:00 2001 From: Pregmodder <pregmodder@gmail.com> Date: Fri, 11 May 2018 19:26:42 -0400 Subject: [PATCH] fix --- src/js/wombJS.tw | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/wombJS.tw b/src/js/wombJS.tw index 054018dd62c..ecfa8ae1573 100644 --- a/src/js/wombJS.tw +++ b/src/js/wombJS.tw @@ -345,7 +345,7 @@ window.fetalSplit = function(actor) nft.identical = 0; actor.womb.forEach(function(s){ - if (jsRandom(1,1000) > 900 && s.identical !== 1) + if ((jsRandom(1,1000) >= 1000) && s.identical !== 1) nft = {}; nft.age = s.age; nft.fatherID = s.fatherID; -- GitLab