From bd991cf2d24df61b02fe0b74306802e8532dba4c Mon Sep 17 00:00:00 2001
From: Pregmodder <pregmodder@gmail.com>
Date: Sun, 12 Aug 2018 03:41:50 -0400
Subject: [PATCH] fixes

---
 devNotes/twine JS.txt                  | 6 ++++--
 src/uncategorized/saLongTermEffects.tw | 2 +-
 2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt
index 1b0f5b44b1c..dfdd0d1e0c8 100644
--- a/devNotes/twine JS.txt	
+++ b/devNotes/twine JS.txt	
@@ -10021,6 +10021,7 @@ window.saChoosesOwnClothes = (function() {
 							wardrobeAssignment.push({text: `and wears one of the beautiful folk costumes of the asian race.`, clothes: "a kimono"});
 						}
 					}
+				}
 				
 				/*Chooses clothes according to fetishes, quirks, etc.*/
 				if(slave.attrXY > 70) {
@@ -10089,7 +10090,7 @@ window.saChoosesOwnClothes = (function() {
 				if(slave.sexualFlaw == "shamefast") {
 					wardrobeTastes.push({text: `and chooses an outfit that covers ${him} up as much as possible.`, clothes: "a burqa"});
 				} else if(slave.sexualFlaw == "breeder") {
-					if(isItemAccessible("attractive lingerie for a pregnant woman"))
+					if(isItemAccessible("attractive lingerie for a pregnant woman")) {
 						wardrobeTastes.push({text: `and wears lingerie designed to acommodate pregnancies, hoping that others get the hint.`, clothes: "attractive lingerie for a pregnant woman"});
 					}
 				} else if(slave.sexualFlaw == "malicious") {
@@ -10109,6 +10110,7 @@ window.saChoosesOwnClothes = (function() {
 					wardrobeTastes.push({text: `and dresses up like a cheerleader since ${he} thinks it looks cute.`, clothes: "a cheerleader outfit"});
 					if(isItemAccessible("a kimono")) {
 						wardrobeTastes.push({text: `and wraps ${himself} in a kimono, since it feels so good on ${his} skin.`, clothes: "a kimono"});
+					}
 				} else if(slave.actualAge < 18) {
 					wardrobeTastes.push({text: `and chooses an outfit that somewhat resembles one of ${his} school uniforms.`, clothes: "a schoolgirl outfit"});
 				}
@@ -10205,7 +10207,7 @@ window.saChoosesOwnClothes = (function() {
 				if(slave.nationality == "Canadian") {
 					wardrobeTastes.push({text: `and chooses an outfit that makes ${him} feel oddly nostalgic.`, clothes: "a mounty outfit"});
 				} else if(slave.nationality == "Japanese") {
-					if(isItemAccessible("a kimono") {
+					if(isItemAccessible("a kimono")) {
 						wardrobeTastes.push({text: `and chooses an outfit that makes ${him} feel oddly nostalgic.`, clothes: "a kimono"});
 					}
 				}
diff --git a/src/uncategorized/saLongTermEffects.tw b/src/uncategorized/saLongTermEffects.tw
index dfe6ac651b7..8a72987fd3f 100644
--- a/src/uncategorized/saLongTermEffects.tw
+++ b/src/uncategorized/saLongTermEffects.tw
@@ -5832,7 +5832,7 @@
                         <<set $slaves[$i].trust -= 1>>
                 <</if>>
 	<</if>>
-<<elseif $slaves[$i].eyes == 2>>
+<<elseif $slaves[$i].eyes == 1>>
 	<<if ($slaves[$i].eyewear == "blurring glasses") || ($slaves[$i].eyewear == "blurring contacts")>>
 	<<if $slaves[$i].devotion > 50>>
 		$He tolerates the annoyance of blurred vision induced by $his eyewear.
-- 
GitLab