From 31d3f402728960abd9ef52525ae9edf8eb3cf5b4 Mon Sep 17 00:00:00 2001
From: Svornost <11434-svornost@users.noreply.gitgud.io>
Date: Mon, 18 May 2020 09:39:29 -0700
Subject: [PATCH] Don't age nursery cribs in two different places; let endWeek
 handle it.

---
 src/facilities/nursery/nurseryWidgets.js | 10 ----------
 1 file changed, 10 deletions(-)

diff --git a/src/facilities/nursery/nurseryWidgets.js b/src/facilities/nursery/nurseryWidgets.js
index 2b876ec6aaf..0208e92c298 100644
--- a/src/facilities/nursery/nurseryWidgets.js
+++ b/src/facilities/nursery/nurseryWidgets.js
@@ -17700,17 +17700,7 @@ App.Facilities.Nursery.childrenReport = function childrenReport() {
 		}
 		He = capFirstChar(he), His = capFirstChar(his);
 
-		child.birthWeek++;
-
-		if (child.birthWeek >= 52) {
-			child.birthWeek = 0;
-			if (V.seeAge) {
-				child.actualAge++, child.ovaryAge++;
-			}
-		}
-
 		if (child.growTime > 0) {
-			child.growTime--;
 			r += `<br><span class="pink">${child.slaveName}</span> is growing steadily. ${He} will be ready for release in about ${years(child.growTime)}. `;
 		} else {
 			r += `<span class="pink">${child.slaveName}</span> is <span class="lime">ready for release.</span> ${He} will be removed from ${V.nurseryName} upon your approach.`;
-- 
GitLab