From 65811ee6e58629e033ed7e6cc669166f84d15e73 Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Mon, 31 Aug 2020 17:19:27 -0400 Subject: [PATCH] tweaks --- src/markets/specificMarkets/householdLiquidator.js | 6 +++--- src/markets/theMarket/buySlaves.js | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/markets/specificMarkets/householdLiquidator.js b/src/markets/specificMarkets/householdLiquidator.js index 1c3a9a3d3f6..190d30d8e53 100644 --- a/src/markets/specificMarkets/householdLiquidator.js +++ b/src/markets/specificMarkets/householdLiquidator.js @@ -63,15 +63,15 @@ App.Markets["Household Liquidator"] = function() { if (slave.genes !== GenerateChromosome()) { _oppositeSex = true; } - const {his} = getPronouns(slave); + const {his, mother, daughter} = getPronouns(slave); - r.push(`The household liquidator is offering a ${V.mother} and ${his}`); + r.push(`The household liquidator is offering a ${mother} and ${his}`); if (slave.genes === "XX" && _oppositeSex === true) { r.push(`son`); } else if (slave.genes === "XY" && _oppositeSex === true) { r.push(`daughter`); } else { - r.push(`${V.daughter}`); + r.push(`${daughter}`); } r.push(`for sale. You are permitted to inspect both slaves.`); App.UI.DOM.appendNewElement("p", el, r.join(" ")); diff --git a/src/markets/theMarket/buySlaves.js b/src/markets/theMarket/buySlaves.js index db58d78e717..9e7e5f93658 100644 --- a/src/markets/theMarket/buySlaves.js +++ b/src/markets/theMarket/buySlaves.js @@ -68,7 +68,7 @@ App.UI.buySlaves = function() { "Slaves from", () => { App.UI.specificMarket({ - market: "neighbor", + market: "neighbor", slaveMarket: 0, newSlaves: [], numArcology: _i -- GitLab