From 85a1d46eb4d0a5b09e4b760877cfe4939e5e2913 Mon Sep 17 00:00:00 2001
From: Svornost <11434-svornost@users.noreply.gitgud.io>
Date: Sun, 24 Oct 2021 21:58:15 -0700
Subject: [PATCH] Default to fixing rather than attempting in vain to soften
 paraphilias.

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

diff --git a/src/player/personalAttentionSelect.js b/src/player/personalAttentionSelect.js
index abd9968f76c..23a975e6df4 100644
--- a/src/player/personalAttentionSelect.js
+++ b/src/player/personalAttentionSelect.js
@@ -929,7 +929,7 @@ App.UI.Player.personalAttention = function() {
 					return `soften behavioral flaw`;
 				}
 			} else if (slave.sexualFlaw !== "none") {
-				if (slave.devotion < -20) {
+				if (slave.devotion < -20 || App.Data.misc.paraphiliaList.includes(slave.sexualFlaw)) {
 					return `fix sexual flaw`;
 				} else {
 					return `soften sexual flaw`;
-- 
GitLab