From 4fa01b8f48915777353649ab566fa980de19a1c6 Mon Sep 17 00:00:00 2001 From: Pregmodder <pregmodder@gmail.com> Date: Sun, 19 Feb 2023 16:41:29 -0500 Subject: [PATCH] simplify --- src/js/pregJS.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/js/pregJS.js b/src/js/pregJS.js index d83ba360238..e9bf52ec95e 100644 --- a/src/js/pregJS.js +++ b/src/js/pregJS.js @@ -499,10 +499,7 @@ globalThis.knockMeUpActorActor = function(mother, chance, hole, father) { chance += 10; } } - if (V.seeIncest === 0 && areRelated(mother, father)) { - chance = -100; - } - if (!isVirile(father) || !isFertile(mother)) { + if (!isVirile(father) || !isFertile(mother) || (V.seeIncest === 0 && areRelated(mother, father))) { chance = -10000; } if (mother.preg === -1) { -- GitLab