From 36b6a7642001adb9a79b367b5d5e99784739b993 Mon Sep 17 00:00:00 2001 From: Pregmodder <pregmodder@gmail.com> Date: Mon, 31 May 2021 10:24:23 -0400 Subject: [PATCH] fix "no clothing" birth scene --- src/js/birth/birth.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/birth/birth.js b/src/js/birth/birth.js index d811de7dd9b..69a859b94b2 100644 --- a/src/js/birth/birth.js +++ b/src/js/birth/birth.js @@ -8505,7 +8505,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } } } - } else if (App.Data.clothes.get(slave.clothes).exposure <= 3) { + } else if (App.Data.clothes.get(slave.clothes).exposure > 3) { if (slave.fetish === "mindbroken") { r.push(`Instinctively, ${he} begins to push out`); if (slave.broodmother > 0) { -- GitLab