From 5b12862967ab9bd47f3c98bd556f8738208290bb Mon Sep 17 00:00:00 2001
From: Svornost <11434-svornost@users.noreply.gitgud.io>
Date: Mon, 2 Oct 2023 12:55:34 -0400
Subject: [PATCH] Fix a couple of missing semicolons and initialize the slaves
 fathered counter correctly

---
 src/events/intro/acquisition.js | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/events/intro/acquisition.js b/src/events/intro/acquisition.js
index 70dfac0c18b..a96a13655b0 100644
--- a/src/events/intro/acquisition.js
+++ b/src/events/intro/acquisition.js
@@ -445,14 +445,14 @@ App.Intro.acquisition = function() {
 						SPregnancies.push(birthData);
 					}
 					s.counter.PCChildrenBeared++;
-					V.PC.counter.slavesFathered;
+					V.PC.counter.slavesFathered++;
 				}
-			})
+			});
 			s.counter.PCKnockedUp += PCPregnancies.length;
 			s.counter.birthsTotal += SPregnancies.length;
 			s.counter.timesBred += SPregnancies.length;
 			V.PC.counter.slavesKnockedUp += SPregnancies.length;
-		})
+		});
 	}
 
 	function inbreedingCalc() {
-- 
GitLab