saRelationships issues

Noticed this one scanning through the file; it looks like slave wives with close-to-perfect trust and devotion on close assignments don't get the trust claimed by the text.

				switch (slave.assignment) {
					case Job.HOUSE:
					case Job.CONCUBINE:
					case Job.FUCKTOY:
					case Job.MASTERSUITE:
					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;
						break;

But the issue I noticed in play was that slaves in relationships are only being pushed apart if both of them are on restrictive rules, which doesn't seem desirable.

		} else if (slave.rules.relationship === "restrictive" && slave.relationship !== 5) {
			 if (friend.rules.relationship === "restrictive") {
				r.push(`Since the rules forbid the relationship between ${slave.slaveName} and ${friend.slaveName}, they are <span class="relationship dec">forced apart.</span>`);
				[etc etc etc]

Even worse for enforcing 'just friends;' the reduction there likewise requires the other party to be on restrictive rules, not 'just friends' rules.

		} else if (slave.rules.relationship === "just friends" && slave.relationship !== 5 && slave.relationship > 2) {
			 if (friend.rules.relationship === "restrictive") {
				r.push(`Since the sexual relationship between ${slave.slaveName} and ${friend.slaveName} is against the rules, they`);