diff --git a/src/endWeek/saRelationships.js b/src/endWeek/saRelationships.js index ed45109b57e076010e0767e6109d44058c11aa2a..217df0eea99e65eaf411896f543e5218f6e4d245 100644 --- a/src/endWeek/saRelationships.js +++ b/src/endWeek/saRelationships.js @@ -8,7 +8,6 @@ App.SlaveAssignment.relationships = (function() { let playerPronouns; let PC; - let friend; return saRelationships; @@ -346,6 +345,7 @@ App.SlaveAssignment.relationships = (function() { * */ function existingRelationship(slave) { + let friend; let him2, his2, wife2; if (slave.relationship > 0) { friend = getSlave(slave.relationshipTarget); @@ -454,6 +454,7 @@ App.SlaveAssignment.relationships = (function() { case Job.QUARTER: r.push(`${He} is <span class="devotion inc">happy</span> to be allowed to live ${his} life close to you, since ${he}'s your ${wife}. In addition, ${his} deep reliance on ${his} formal relationship to you produces a steady increase of both <span class="devotion inc">devotion</span> and <span class="trust inc">trust.</span>`); slave.devotion += 2; + slave.trust += 2; break; case Job.WHORE: case Job.BROTHEL: @@ -578,7 +579,7 @@ App.SlaveAssignment.relationships = (function() { } } } else if (slave.rules.relationship === "just friends" && slave.relationship !== 5 && slave.relationship > 2) { - if (friend.rules.relationship === "restrictive") { + if (friend.rules.relationship !== "permissive") { r.push(`Since the sexual relationship between ${slave.slaveName} and ${friend.slaveName} is against the rules, they`); if (!hasAnyArms(slave) && !hasAnyArms(friend)) { r.push(`are, metaphorically speaking,`);