From fbb89bd9fe0828b1a15884215949f035a60a406d Mon Sep 17 00:00:00 2001
From: Svornost <11434-svornost@users.noreply.gitgud.io>
Date: Sat, 18 Jun 2022 15:17:25 -0400
Subject: [PATCH] scope reduction

---
 src/events/intro/acquisition.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/events/intro/acquisition.js b/src/events/intro/acquisition.js
index 19e6afd9fb7..9a59c6ba964 100644
--- a/src/events/intro/acquisition.js
+++ b/src/events/intro/acquisition.js
@@ -32,7 +32,6 @@ App.Intro.acquisition = function() {
 
 	r.push(`The previous owner seems to have left in something of a hurry.`);
 	let valueGiven = 0;
-	const heroSlaves = App.Utils.buildHeroArray().shuffle();
 	if (V.cheatMode === 1) {
 		r.push(`Since you've elected to take over an arcology with special advantages, you've acquired a very special group of slaves.`);
 		r.push(App.Intro.cheatModeSlaves());
@@ -152,6 +151,7 @@ App.Intro.acquisition = function() {
 			r.push(`did not have the time in control of the arcology to develop a specific stable of sex slaves,`);
 		}
 		r.push(`their slaves were quite varied.`);
+		const heroSlaves = App.Utils.buildHeroArray().shuffle();
 		for (let j = 0; j < heroSlaves.length; j++) {
 			if (valueOwed - valueGiven <= 5000) {
 				break;
-- 
GitLab