From 5b4c9b0f0fa784ebf8a36c7bdc85841bb7c71b5d Mon Sep 17 00:00:00 2001
From: Svornost <11434-svornost@users.noreply.gitgud.io>
Date: Thu, 17 Dec 2020 10:45:45 -0800
Subject: [PATCH] Fix check for prohibited sexual relationships.

---
 src/endWeek/saRelationships.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/endWeek/saRelationships.js b/src/endWeek/saRelationships.js
index 9f92a6178d2..217df0eea99 100644
--- a/src/endWeek/saRelationships.js
+++ b/src/endWeek/saRelationships.js
@@ -579,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,`);
-- 
GitLab