From 93aafa73f21a1a9ac70fe413a813ada88ad06e24 Mon Sep 17 00:00:00 2001 From: Svornost <11434-svornost@users.noreply.gitgud.io> Date: Wed, 24 Feb 2021 12:00:27 -0800 Subject: [PATCH] Don't default to the player's arcology either --- 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 9bb01a90291..0f7335a24eb 100644 --- a/src/events/intro/acquisition.js +++ b/src/events/intro/acquisition.js @@ -12,7 +12,7 @@ App.Intro.acquisition = function() { parentSetup(); inbreedingCalc(); if (V.plot === 1 && V.neighboringArcologies > 0) { - V.arcologies.reduce((acc, val) => (val.direction !== 0 && val.prosperity > acc.prosperity) ? val : acc).rival = 1; + V.arcologies.reduce((acc, val) => (val.direction !== 0 && val.prosperity > acc.prosperity) ? val : acc, V.arcologies[1]).rival = 1; V.rivalSet = 1; } V.targetAge = V.minimumSlaveAge; -- GitLab