diff --git a/src/events/intro/arcologySelection.js b/src/events/intro/arcologySelection.js index 22e79b62b7248894494827ad8f346582206a1c5b..bf70935ef965c014143ae4b882df0db45af8860c 100644 --- a/src/events/intro/arcologySelection.js +++ b/src/events/intro/arcologySelection.js @@ -211,11 +211,11 @@ App.Intro.generateEstablishedArcologies = function(price) { prereqs: [ [ V.rival.state === 0 || V.rival.state > 2, - `Your inter-arcology war is preventing you from leaving ${V.arcologies[0].name}.` + `Your inter-arcology war is preventing you from leaving ${V.arcologies ? `${V.arcologies[0].name}` : "your arcology"}.` ], [ V.daughtersVictory !== 1, - `You cannot leave ${V.arcologies[0].name} behind while the Daughters of Liberty are still a threat.` + `You cannot leave ${V.arcologies ? `${V.arcologies[0].name}` : "your arcology"} behind while the Daughters of Liberty are still a threat.` ], ], }), ['center']),