diff --git a/js/003-data/slaveWearData.js b/js/003-data/slaveWearData.js
index d0fc4d7969b82d5a41070302f4a0e1ae09f358a2..8777cf308c604a65c8988b57a1ce849836c03372 100644
--- a/js/003-data/slaveWearData.js
+++ b/js/003-data/slaveWearData.js
@@ -7,7 +7,7 @@
  */
 
 /**
- * @typedef {Array<slaveWear>} slaveWearCategory
+ * @typedef {Array<slaveWear>|Array<slaveWearChastity>} slaveWearCategory
  */
 
 /** @type {Object.<string, slaveWearCategory>} */
diff --git a/src/interaction/siWardrobe.js b/src/interaction/siWardrobe.js
index 320c190b11dbdf2a882ce71f0699a2f0be62fbf7..68b650df96294f3f58080236e807a20e0fbca294 100644
--- a/src/interaction/siWardrobe.js
+++ b/src/interaction/siWardrobe.js
@@ -113,7 +113,7 @@ App.UI.SlaveInteract.wardrobe = function(slave) {
 
 		let label = document.createElement('div');
 		label.append(`Collar: `);
-		
+
 		let choice = App.UI.DOM.disabledLink(`${slave.collar}`, [clothTooltip(`${slave.collar}`)]);
 		choice.style.fontWeight = "bold";
 		label.appendChild(choice);
@@ -231,7 +231,7 @@ App.UI.SlaveInteract.wardrobe = function(slave) {
 
 		let label = document.createElement('div');
 		label.append(`Gag: `);
-		
+
 		let choice = App.UI.DOM.disabledLink(`${slave.mouthAccessory}`, [clothTooltip(`${slave.mouthAccessory}`)]);
 		choice.style.fontWeight = "bold";
 		label.appendChild(choice);
@@ -275,7 +275,7 @@ App.UI.SlaveInteract.wardrobe = function(slave) {
 
 		let label = document.createElement('div');
 		label.append(`Arm accessory: `);
-		
+
 		let choice = App.UI.DOM.disabledLink(`${slave.armAccessory}`, [clothTooltip(`${slave.armAccessory}`)]);
 		choice.style.fontWeight = "bold";
 		label.appendChild(choice);
@@ -307,7 +307,7 @@ App.UI.SlaveInteract.wardrobe = function(slave) {
 
 		let label = document.createElement('div');
 		label.append(`Shoes: `);
-		
+
 		let choice = App.UI.DOM.disabledLink(`${slave.shoes}`, [clothTooltip(`${slave.shoes}`)]);
 		choice.style.fontWeight = "bold";
 		label.appendChild(choice);
@@ -360,7 +360,7 @@ App.UI.SlaveInteract.wardrobe = function(slave) {
 
 		let label = document.createElement('div');
 		label.append(`Leg accessory: `);
-		
+
 		let choice = App.UI.DOM.disabledLink(`${slave.legAccessory}`, [clothTooltip(`${slave.legAccessory}`)]);
 		choice.style.fontWeight = "bold";
 		label.appendChild(choice);
@@ -413,7 +413,7 @@ App.UI.SlaveInteract.wardrobe = function(slave) {
 
 		let label = document.createElement('div');
 		label.append(`Belly accessory: `);
-		
+
 		let choice = App.UI.DOM.disabledLink(`${slave.bellyAccessory}`, [clothTooltip(`${slave.bellyAccessory}`)]);
 		choice.style.fontWeight = "bold";
 		label.appendChild(choice);
@@ -446,7 +446,7 @@ App.UI.SlaveInteract.wardrobe = function(slave) {
 
 		let label = document.createElement('div');
 		label.append(`Anal accessory: `);
-		
+
 		let choice = App.UI.DOM.disabledLink(`${slave.buttplug}`, [clothTooltip(`${slave.buttplug}`)]);
 		choice.style.fontWeight = "bold";
 		label.appendChild(choice);
@@ -493,7 +493,7 @@ App.UI.SlaveInteract.wardrobe = function(slave) {
 
 		let label = document.createElement('div');
 		label.append(`Anal accessory attachment: `);
-		
+
 		let choice = App.UI.DOM.disabledLink(`${slave.buttplugAttachment}`, [clothTooltip(`${slave.buttplugAttachment}`)]);
 		choice.style.fontWeight = "bold";
 		label.appendChild(choice);
@@ -539,7 +539,7 @@ App.UI.SlaveInteract.wardrobe = function(slave) {
 
 		let label = document.createElement('div');
 		label.append(`Vaginal accessory: `);
-		
+
 		let choice = App.UI.DOM.disabledLink(`${slave.vaginalAccessory}`, [clothTooltip(`${slave.vaginalAccessory}`)]);
 		choice.style.fontWeight = "bold";
 		label.appendChild(choice);
@@ -586,7 +586,7 @@ App.UI.SlaveInteract.wardrobe = function(slave) {
 
 		let label = document.createElement('div');
 		label.append(`Vaginal accessory attachment: `);
-		
+
 		let choice = App.UI.DOM.disabledLink(`${slave.vaginalAttachment}`, [clothTooltip(`${slave.vaginalAttachment}`)]);
 		choice.style.fontWeight = "bold";
 		label.appendChild(choice);
@@ -631,7 +631,7 @@ App.UI.SlaveInteract.wardrobe = function(slave) {
 
 		let label = document.createElement('div');
 		label.append(`Dick accessory: `);
-		
+
 		let choice = App.UI.DOM.disabledLink(`${slave.dickAccessory}`, [clothTooltip(`${slave.dickAccessory}`)]);
 		choice.style.fontWeight = "bold";
 		label.appendChild(choice);
@@ -698,7 +698,7 @@ App.UI.SlaveInteract.wardrobe = function(slave) {
 		} else {
 			chasCho = `THERE HAS BEEN AN ERROR `;
 		}
-		
+
 		let choice = App.UI.DOM.disabledLink(chasCho, [clothTooltip(chasCho)]);
 		choice.style.fontWeight = "bold";
 		label.appendChild(choice);
@@ -786,7 +786,7 @@ App.UI.SlaveInteract.wardrobe = function(slave) {
 		App.Art.refreshSlaveArt(slave, 3, "art-frame");
 		jQuery("#content-appearance").empty().append(App.UI.SlaveInteract.wardrobe(slave));
 	}
-	
+
 	/**
 	 * Figure out a tooltip text to use based on clothing name.
 	 * Described effects are mainly from saClothes.js some are from saLongTermMentalEffects.js or saLongTermPhysicalEffects.js
@@ -797,7 +797,7 @@ App.UI.SlaveInteract.wardrobe = function(slave) {
 	 */
 	function clothTooltip(cloth) {
 		let Cloth = capFirstChar(cloth);
-		
+
 		switch (cloth) {
 			/* nice clothes without specific effects(besides FS or being slutty/humiliating/modest) are handled at the end */
 			case "choosing her own clothes":
@@ -815,15 +815,15 @@ App.UI.SlaveInteract.wardrobe = function(slave) {
 				return Cloth + ", it's humiliating, increase devotion and fear for slaves who are disobedient and not terrified. Masochists who are at least ambivalent gain devotion, may also cause masochism.";
 			case "chains":
 				return Cloth + " increase devotion and fear for slaves who are disobedient and not terrified. Masochists who are at least ambivalent gain devotion, may also cause masochism.";
-				
+
 			case "an apron":
 				return Cloth + ", nice clothing that increases just devotion for submissives, humiliation fetishists and visibly pregnant pregnancy fetishists regardless of devotion level.";
 			case "a monokini":
 				return Cloth + ", nice clothing that boob fetishists enjoy.";
-			
+
 			case "none":
 				return "No effect one way or another.";
-			
+
 			case "heavy gold":
 			case "ancient Egyptian":
 			case "bowtie":
@@ -834,14 +834,13 @@ App.UI.SlaveInteract.wardrobe = function(slave) {
 			case "silk ribbon":
 			case "stylish leather":
 				return Cloth + " on obedient slaves reduces fear, on non-obedient ones reduces fear a lot and devotion somewhat.";
-				return Cloth + " ";
 			case "preg biometrics":
 				return Cloth + " increases devotion for those who have pregnancy fetish while fertile or a humiliation fetish. For others obedient ones gain devotion, ambivalent ones gain fear and devotion and resistant ones lose devotion and gain fear.";
 			case "bell collar":
 				return Cloth + " on non-obedient slaves reduces fear a lot and devotion somewhat.";
 			case "leather with cowbell":
 				return Cloth + " on obedient slaves with boob fetish increases devotion, on disobedient slaves reduces fear a lot and devotion somewhat.";
-			
+
 			case "tight steel":
 			case "uncomfortable leather":
 			case "neck corset":
@@ -849,12 +848,12 @@ App.UI.SlaveInteract.wardrobe = function(slave) {
 				return Cloth + " increases fear for non-obedient slaves.";
 			case "shock punishment":
 				return Cloth + " for non-obedient slaves increases fear a great deal and reduces devotion, for resistant non-odd slaves it affects both much more a single time and gives the odd flaw.";
-			
+
 			case "cat ears":
 				return Cloth + " increase fear and devotion for disobedient slaves, submissives and nymphos also enjoy wearing one.";
 			case "porcelain mask":
 				return Cloth + " obscures the face, increases fear and devotion for disobedient slaves, submissives and nymphos also enjoy wearing one.";
-			
+
 			case "ball gag":
 			case "bit gag":
 			case "ring gag":
@@ -862,11 +861,11 @@ App.UI.SlaveInteract.wardrobe = function(slave) {
 			case "dildo gag":
 			case "massive dildo gag":
 				return Cloth + " increases oral skill up to a point and causes fear for disobedient slaves.";
-			
+
 			case "hand gloves":
 			case "elbow gloves":
 				return Cloth + " have no effect one way or another.";
-			
+
 			case "flats":
 				return Cloth + " have no effect one way or another.";
 			case "heels":
@@ -879,12 +878,12 @@ App.UI.SlaveInteract.wardrobe = function(slave) {
 			case "extreme heels":
 			case "extreme platform heels":
 				return Cloth + " increase height, slaves with natural legs who are resistant resent and fear wearing them while non-resistant ones become more fearful(unless masochistic) and obedient.";
-			
+
 			case "short stockings":
 				return Cloth + " have no effect one way or another.";
 			case "long stockings":
 				return Cloth + " have no effect one way or another.";
-			
+
 			case "a tight corset":
 				return Cloth + " slowly narrows the waist into wispy one.";
 			case "an extreme corset":
@@ -896,7 +895,7 @@ App.UI.SlaveInteract.wardrobe = function(slave) {
 			case "a large empathy belly":
 			case "a huge empathy belly":
 				return Cloth + " strenghtens or removes(a weak) pregnancy fetish and affects devotion in various ways depending on devotion, fertility and having a pregnancy fetish or breeder flaw.";
-			
+
 			case "bullet vibrator":
 				return Cloth + " increases devotion but weakens fetish and libido.";
 			case "smart bullet vibrator":
@@ -911,12 +910,12 @@ App.UI.SlaveInteract.wardrobe = function(slave) {
 			case "huge dildo":
 			case "long, huge dildo":
 				return Cloth + " stretches vagina into a cavernous one, on smaller vaginas size queens get much more devoted, masochists and submissives much more devoted and fearful and anyone else becomes much less devoted and trusting. Might cause miscarriage.";
-			
+
 			case "vibrator":
 				return Cloth + " ";
 			case "smart vibrator":
 				return Cloth + " ";
-			
+
 			case "plug":
 				return Cloth + " stretches butthole from virgin to tight, might remove hatred of anal.";
 			case "long plug":
@@ -927,14 +926,14 @@ App.UI.SlaveInteract.wardrobe = function(slave) {
 			case "huge plug":
 			case "long, huge plug":
 				return Cloth + " stretches vagina into a cavernous one, on smaller vaginas size queens get much more devoted, masochists and submissives much more devoted and fearful and anyone else becomes much less devoted and trusting. Might cause miscarriage.";
-			
+
 			case "tail":
 			case "fox tail":
 			case "cat tail":
 			case "cow tail":
 				return Cloth + " makes it more scary to wear a plug but might give humiliation fetish,";
-			
-			
+
+
 			case "anal chastity":
 				return Cloth + " prevents losing anal virginity.";
 			case "chastity belt":
@@ -956,8 +955,8 @@ App.UI.SlaveInteract.wardrobe = function(slave) {
 				return Cloth + " ";
 			case "revoke choosing own chastity":
 				return Cloth + " ";
-			
-			default:
+
+			default: {
 				/* assuming nice clothes, could actually add some sort of check to make sure. */
 				/* which clothes have these is decided in miscData.js */
 				let clothTooltip = Cloth + "";
@@ -975,6 +974,7 @@ App.UI.SlaveInteract.wardrobe = function(slave) {
 				}
 				clothTooltip += ".";
 				return clothTooltip;
-		};
+			}
+		}
 	}
 };