From ed18afa7de791ef7b155390fa6f3a2bb15a01525 Mon Sep 17 00:00:00 2001 From: Pregmodder <pregmodder@gmail.com> Date: Sun, 14 Mar 2021 13:09:03 -0400 Subject: [PATCH] Fix incubator setting error --- src/facilities/incubator/incubatorInteract.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/facilities/incubator/incubatorInteract.js b/src/facilities/incubator/incubatorInteract.js index 6e2667753b2..d09ba5ed15e 100644 --- a/src/facilities/incubator/incubatorInteract.js +++ b/src/facilities/incubator/incubatorInteract.js @@ -875,11 +875,11 @@ App.UI.incubator = function() { /* Should be visible only after incubator.setting.reproduction is installed and activated*/ r = []; r.push(`${His} reproductive organs are getting`); - if (V.incubator.tanks[i].incubator.setting.pregAdaptationPower === 1) { + if (V.incubator.setting.pregAdaptationPower === 1) { r.push(`an advanced`); - } else if (V.incubator.tanks[i].incubator.setting.pregAdaptationPower === 2) { + } else if (V.incubator.setting.pregAdaptationPower === 2) { r.push(`an intensive`); - } else if (V.incubator.tanks[i].incubator.setting.pregAdaptationPower === 3) { + } else if (V.incubator.setting.pregAdaptationPower === 3) { r.push(`an extreme`); } else { r.push(`a standard`); -- GitLab