From 3d016c442d73c9935ac83fcb6f8445e20170e8b4 Mon Sep 17 00:00:00 2001
From: klorpa <30924131+klorpa@users.noreply.github.com>
Date: Sat, 10 Nov 2018 00:05:46 -0600
Subject: [PATCH] Fixed

---
 devNotes/twine JS.txt              | 6 +++---
 src/endWeek/saChoosesOwnClothes.tw | 4 ++--
 src/js/vignettes.tw                | 2 +-
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt
index 6c941d8efa1..e3d8453dd03 100644
--- a/devNotes/twine JS.txt	
+++ b/devNotes/twine JS.txt	
@@ -10484,7 +10484,7 @@ window.saChoosesOwnClothes = (function() {
 					wardrobeAssignment.push({text: `and wears an one-piece swimsuit, since it's all ${he} can wear that won't be ruined by all the moisture in the spa.`, clothes: "a monokini"});
 				}
 				if(isItemAccessible("one-piece swimsuit")) {
-					wardrobeAssignment.push({text: `and wears a modest swimsuit, since it's all ${he} can wear that won't be ruined by all the moisture in the spa.`, clothes: "one-piece swimsuit"});
+					wardrobeAssignment.push({text: `and wears a one-piece swimsuit, since it's all ${he} can wear that won't be ruined by all the moisture in the spa.`, clothes: "one-piece swimsuit"});
 				}
 				if(isItemAccessible("a burkini")) {
 					wardrobeAssignment.push({text: `and wears a modest swimsuit, since it's all ${he} can wear that won't be ruined by all the moisture in the spa.`, clothes: "a burkini"});
@@ -10865,7 +10865,7 @@ window.saChoosesOwnClothes = (function() {
 					if(isItemAccessible("a ball gown")) {
 						wardrobeTastes.push({text: `and chooses a formal dress that makes ${him} feel like royalty.`, clothes: "a ball gown"});
 					}
-				} else if(slave.behavioralQuirk == "devout") {
+				} else if(slave.behavioralFlaw == "devout") {
 					wardrobeTastes.push({text: `and wears something more appropriate for a monastery than a whorehouse.`, clothes: "a penitent nuns habit"});
 				}
 
@@ -29939,7 +29939,7 @@ window.GetVignette = function GetVignette(slave) {
 			type: "rep",
 			effect: 0,
 		});
-	} else if (slave.assignment === "rest" || slave.assignment === "rest in the spa" || slave.assignment === "be the Attendant") {
+	} else if (slave.assignment === "rest" || slave.assignment === "rest in the spa") {
 		switch (slave.behavioralFlaw) {
 			case "anorexic":
 				vignettes.push({
diff --git a/src/endWeek/saChoosesOwnClothes.tw b/src/endWeek/saChoosesOwnClothes.tw
index 834934d48c8..5654234499c 100644
--- a/src/endWeek/saChoosesOwnClothes.tw
+++ b/src/endWeek/saChoosesOwnClothes.tw
@@ -334,7 +334,7 @@ window.saChoosesOwnClothes = (function() {
 					wardrobeAssignment.push({text: `and wears an one-piece swimsuit, since it's all ${he} can wear that won't be ruined by all the moisture in the spa.`, clothes: "a monokini"});
 				}
 				if(isItemAccessible("one-piece swimsuit")) {
-					wardrobeAssignment.push({text: `and wears a modest swimsuit, since it's all ${he} can wear that won't be ruined by all the moisture in the spa.`, clothes: "one-piece swimsuit"});
+					wardrobeAssignment.push({text: `and wears a one-piece swimsuit, since it's all ${he} can wear that won't be ruined by all the moisture in the spa.`, clothes: "one-piece swimsuit"});
 				}
 				if(isItemAccessible("a burkini")) {
 					wardrobeAssignment.push({text: `and wears a modest swimsuit, since it's all ${he} can wear that won't be ruined by all the moisture in the spa.`, clothes: "a burkini"});
@@ -715,7 +715,7 @@ window.saChoosesOwnClothes = (function() {
 					if(isItemAccessible("a ball gown")) {
 						wardrobeTastes.push({text: `and chooses a formal dress that makes ${him} feel like royalty.`, clothes: "a ball gown"});
 					}
-				} else if(slave.behavioralQuirk == "devout") {
+				} else if(slave.behavioralFlaw == "devout") {
 					wardrobeTastes.push({text: `and wears something more appropriate for a monastery than a whorehouse.`, clothes: "a penitent nuns habit"});
 				}
 
diff --git a/src/js/vignettes.tw b/src/js/vignettes.tw
index f0506c84d07..1bba04613b1 100644
--- a/src/js/vignettes.tw
+++ b/src/js/vignettes.tw
@@ -3321,7 +3321,7 @@ window.GetVignette = function GetVignette(slave) {
 			type: "rep",
 			effect: 0,
 		});
-	} else if (slave.assignment === "rest" || slave.assignment === "rest in the spa" || slave.assignment === "be the Attendant") {
+	} else if (slave.assignment === "rest" || slave.assignment === "rest in the spa") {
 		switch (slave.behavioralFlaw) {
 			case "anorexic":
 				vignettes.push({
-- 
GitLab