diff --git a/src/descriptions/arcologyDescription.js b/src/descriptions/arcologyDescription.js index a4b2880469355e543e0d9b8dcf6c8f70050b8557..12ef6da75cb1446e4732db60814a6c5fdaeb4773 100644 --- a/src/descriptions/arcologyDescription.js +++ b/src/descriptions/arcologyDescription.js @@ -134,8 +134,12 @@ App.Desc.playerArcology = function(lastElement) { if (A.FSAssetExpansionistDecoration === 100) { buffer.push(`The slaves' breasts are unrealistically huge, almost as large as the rest of their bodies.`); } - if (A.FSRepopulationFocusDecoration === 100) { - buffer.push(`The slaves are heavily pregnant${V.PC.vagina !== -1 ? `, as is the central${V.PC.dick !== 0 ? " futanari" : " female"}` : ""} figure.`); + if (A.FSRepopulationFocusDecoration === 100) { /* Can this be made one line? */ + if (V.PC.vagina !== -1) { + buffer.push(`The slaves are heavily pregnant, as is the central ${V.PC.dick !== 0 ? "futanari" : "female"} figure.`); + } else { + buffer.push(`The slaves are heavily pregnant.`); + } } if (A.FSRestartDecoration === 100) { buffer.push(`The central`);