diff --git a/src/endWeek/saRelationships.js b/src/endWeek/saRelationships.js index 252c5c85f3964836da9dc60b8e2616891a3b5d29..72cc36b7bab3fd6a871d3926fa9f600e6866e879 100644 --- a/src/endWeek/saRelationships.js +++ b/src/endWeek/saRelationships.js @@ -1288,7 +1288,7 @@ App.SlaveAssignment.relationships = function saRelationships(slave) { r.push(`${slave.slaveName} knows that ${his} ${relativeTerm(slave, singleRelative)} ${singleRelative.slaveName} loves being your sex slave, and is <span class="devotion inc">happy</span> for ${him2}.`); } else if (devotedRelatives.size > 0) { const groups = relativeMapToGroupArray(devotedRelatives); - r.push(`${slave.slaveName} knows that ${toSentence(groups)} all love being your sex slaves, and is <span class="devotion inc">happy</span> for them.`); + r.push(`${slave.slaveName} knows that ${toSentence(groups)} ${devotedRelatives.size === 2 ? `both` : `all`} love being your sex slaves, and is <span class="devotion inc">happy</span> for them.`); } if (relativeMapTotalSize(devotedRelatives) > overwhelmed) { r.push(`${He} has so many relatives that love being your slaves that ${he} is sometimes overwhelmed with joy and <span class="devotion dec">neglects ${his} duties.</span>`); @@ -1310,7 +1310,7 @@ App.SlaveAssignment.relationships = function saRelationships(slave) { r.push(`${slave.slaveName} knows that ${his} ${relativeTerm(slave, singleRelative)} ${singleRelative.slaveName} hates being a sex slave, and is <span class="trust dec">afraid</span> for ${him2}.`); } else if (hatefulRelatives.size > 0) { const groups = relativeMapToGroupArray(hatefulRelatives); - r.push(`${slave.slaveName} knows that ${toSentence(groups)} all hate being sex slaves, and is <span class="trust dec">afraid</span> for them.`); + r.push(`${slave.slaveName} knows that ${toSentence(groups)} ${hatefulRelatives.size === 2 ? `both` : `all`} hate being sex slaves, and is <span class="trust dec">afraid</span> for them.`); } if (relativeMapTotalSize(hatefulRelatives) > overwhelmed) { r.push(`${He} has so many relatives that hate being your sex slaves that ${he} is overwhelmed with fear and <span class="trust inc">just has to trust you to take care of them.</span>`);