Skip to content
Snippets Groups Projects
Commit 8ccb8df1 authored by lowercasedonkey's avatar lowercasedonkey
Browse files

fix

parent f8dde555
No related branches found
No related tags found
No related merge requests found
......@@ -20,10 +20,7 @@ App.Markets["Household Liquidator"] = function() {
slave.canRecruit = 0;
// Create opposite sex chance of relative
let _oppositeSex = false;
if (slave.genes !== GenerateChromosome()) {
_oppositeSex = true;
}
const _oppositeSex = (slave.genes !== GenerateChromosome());
App.UI.DOM.appendNewElement("p", el, `The household liquidator is offering a set of siblings for sale. You are permitted to inspect both slaves.`);
let _relativeSlave = generateRelatedSlave(slave, "younger sibling", _oppositeSex);
......@@ -59,10 +56,7 @@ App.Markets["Household Liquidator"] = function() {
slave.canRecruit = 0;
// Create opposite sex chance of relative
let _oppositeSex = false;
if (slave.genes !== GenerateChromosome()) {
_oppositeSex = true;
}
const _oppositeSex = (slave.genes !== GenerateChromosome());
const {his, mother, daughter} = getPronouns(slave);
r.push(`The household liquidator is offering a ${mother} and ${his}`);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment