From e4ebeeaa3c9a51294f812b83240e903704a17bdd Mon Sep 17 00:00:00 2001 From: kopareigns <kopareigns@gmail.com> Date: Thu, 14 May 2020 19:44:19 -0400 Subject: [PATCH] Fix --- src/facilities/nursery/nurseryWidgets.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/facilities/nursery/nurseryWidgets.js b/src/facilities/nursery/nurseryWidgets.js index 77b51dcf7f7..2b876ec6aaf 100644 --- a/src/facilities/nursery/nurseryWidgets.js +++ b/src/facilities/nursery/nurseryWidgets.js @@ -18116,10 +18116,10 @@ App.Facilities.Nursery.nurseryReport = function nurseryReport() { } let FLsFetish = 0; - + /* if (Matron.fetishStrength <= 95) { if (Matron.fetish !== "caring") { - if (fetishChangeChance(Matron > jsRandom(0, 100))) { + if (fetishChangeChance(Matron) > jsRandom(0, 100)) { FLsFetish = 1, Matron.fetishKnown = 1, Matron.fetish = "caring"; } } else if (!Matron.fetishKnown) { @@ -18128,7 +18128,7 @@ App.Facilities.Nursery.nurseryReport = function nurseryReport() { FLsFetish = 2, Matron.fetishStrength += 4; } } - + */ if (Matron.fetish === "none" || Matron.fetish === "caring") { devBonus++; } -- GitLab