From 9e5f3be188851b5ec434f7e86a21afd2319f5d80 Mon Sep 17 00:00:00 2001
From: Anu <barrychahal@gmail.com>
Date: Mon, 21 Jun 2021 06:15:50 +0000
Subject: [PATCH] Reveal broodmothers in incubator menu

---
 src/facilities/incubator/incubatorInteract.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/facilities/incubator/incubatorInteract.js b/src/facilities/incubator/incubatorInteract.js
index 57459ebbcc2..7d538e3edb1 100644
--- a/src/facilities/incubator/incubatorInteract.js
+++ b/src/facilities/incubator/incubatorInteract.js
@@ -186,7 +186,7 @@ App.UI.incubator = function() {
 
 		const qlIncubator = document.createElement("div");
 		for (const slave of V.slaves) {
-			if (slave.preg > 0 && slave.broodmother === 0 && slave.pregKnown === 1 && slave.eggType === "human") {
+			if (slave.preg > 0 && slave.pregKnown === 1 && slave.eggType === "human") {
 				const r = [];
 				const reserveDisallowed = (slave.assignment === "work in the dairy" && V.dairyPregSetting > 0) || slave.assignment === "be your agent" || slave.assignment === "live with your agent";
 				if (!reserveDisallowed) {
-- 
GitLab