From ffd0a5a859f124cef1a79b50fff94f3c9f41fd24 Mon Sep 17 00:00:00 2001 From: Svornost <11434-svornost@users.noreply.gitgud.io> Date: Wed, 24 Feb 2021 11:58:19 -0800 Subject: [PATCH] Don't ever set the player's arcology as the rival. --- 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 dedb56aa0cf..9bb01a90291 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.prosperity > acc.prosperity ? val : acc).rival = 1; + V.arcologies.reduce((acc, val) => (val.direction !== 0 && val.prosperity > acc.prosperity) ? val : acc).rival = 1; V.rivalSet = 1; } V.targetAge = V.minimumSlaveAge; -- GitLab