From e8a6cb826b8f1c16773939d4b06ca4d1b38478b1 Mon Sep 17 00:00:00 2001
From: lowercasedonkey <lowercasedonkey@gmail.com>
Date: Sun, 1 Mar 2020 09:25:47 -0500
Subject: [PATCH] strip show wardrobe toggle

---
 src/init/storyInit.tw                       |  2 --
 src/uncategorized/BackwardsCompatibility.tw |  8 ++++----
 src/uncategorized/descriptionOptions.tw     | 11 -----------
 3 files changed, 4 insertions(+), 17 deletions(-)

diff --git a/src/init/storyInit.tw b/src/init/storyInit.tw
index ad360bdf5c1..233a691ce57 100644
--- a/src/init/storyInit.tw
+++ b/src/init/storyInit.tw
@@ -264,8 +264,6 @@ You should have received a copy of the GNU General Public License along with thi
 	<<set $showBodyMods = 1>>
 	<<set $showImplantEffects = 1>>
 	<<set $showClothing = 1>>
-	<<set $showWardrobe = 1>>
-	<<set $showMainClothing = 1>>
 	<<set $showAgeDetail = 1>>
 	<<set $showBoobCCs = 1>>
 	<<set $showHeightCMs = 1>>
diff --git a/src/uncategorized/BackwardsCompatibility.tw b/src/uncategorized/BackwardsCompatibility.tw
index bdba6c1faae..eb0992455e7 100644
--- a/src/uncategorized/BackwardsCompatibility.tw
+++ b/src/uncategorized/BackwardsCompatibility.tw
@@ -1470,11 +1470,11 @@
 <<if ndef $showNumbersMax>>
 	<<set $showNumbersMax = 20>>
 <</if>>
-<<if ndef $showWardrobe>>
-	<<set $showWardrobe = 1>>
+<<if def $showWardrobe>>
+	<<unset $showWardrobe>>
 <</if>>
-<<if ndef $showMainClothing>>
-	<<set $showMainClothing = 1>>
+<<if def $showMainClothing>>
+	<<unset $showMainClothing>>
 <</if>>
 <<if ndef $surnameOrder>>
 	<<set $surnameOrder = 0>>
diff --git a/src/uncategorized/descriptionOptions.tw b/src/uncategorized/descriptionOptions.tw
index a8caf86fc1d..924bbe4d7d8 100644
--- a/src/uncategorized/descriptionOptions.tw
+++ b/src/uncategorized/descriptionOptions.tw
@@ -58,17 +58,6 @@
 	<<option 0 "Hidden">>
 <</options>>
 <br>
-<<options $showWardrobe>>
-	The Slave Interact wardrobe is
-	<<option 1 "Shown">>
-	<<option 0 "Hidden">>
-<</options>>
-<<options $showMainClothing>>
-	The Slave Interact clothing list is
-	<<option 1 "Shown">>
-	<<option 0 "Hidden">>
-<</options>>
-<br>
 <<options $showAgeDetail>>
 	Detailed slave age information is
 	<<option 1 "Shown">>
-- 
GitLab