From d65f796bae7dc83109d04d7495be13cfce532918 Mon Sep 17 00:00:00 2001
From: Pregmodder <pregmodder@gmail.com>
Date: Sat, 19 Jan 2019 18:01:46 -0500
Subject: [PATCH] slaves will no longer dumbly ask for slutty clothes if
 allowed to choose their own clothing

---
 devNotes/twine JS.txt      | 6 ++++--
 src/js/eventSelectionJS.tw | 6 ++++--
 2 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt
index f0529414597..b617bfbc596 100644
--- a/devNotes/twine JS.txt	
+++ b/devNotes/twine JS.txt	
@@ -5754,8 +5754,10 @@ if(eventSlave.fetish != "mindbroken") {
 			if(eventSlave.devotion > 20) {
 				if(eventSlave.trust > 20) {
 					if(eventSlave.speechRules != "restrictive") {
-						if(setup.modestClothes.includes(eventSlave.clothes)) {
-							State.variables.RESSevent.push("modest clothes");
+						if(eventSlave.choosesOwnClothes !== 1) {
+							if(setup.modestClothes.includes(eventSlave.clothes)) {
+								State.variables.RESSevent.push("modest clothes");
+							}
 						}
 					}
 				}
diff --git a/src/js/eventSelectionJS.tw b/src/js/eventSelectionJS.tw
index 5eed01ddade..a9797ef3270 100644
--- a/src/js/eventSelectionJS.tw
+++ b/src/js/eventSelectionJS.tw
@@ -787,8 +787,10 @@ if(eventSlave.fetish != "mindbroken") {
 			if(eventSlave.devotion > 20) {
 				if(eventSlave.trust > 20) {
 					if(eventSlave.speechRules != "restrictive") {
-						if(setup.modestClothes.includes(eventSlave.clothes)) {
-							State.variables.RESSevent.push("modest clothes");
+						if(eventSlave.choosesOwnClothes !== 1) {
+							if(setup.modestClothes.includes(eventSlave.clothes)) {
+								State.variables.RESSevent.push("modest clothes");
+							}
 						}
 					}
 				}
-- 
GitLab