diff --git a/js/003-data/miscData.js b/js/003-data/miscData.js
index bbc3fe1a04cc57e30e64ea1eaef5119e549c43c3..2d48ceb1f5f999ce971b6e8aa09d884ef05e03ba 100644
--- a/js/003-data/miscData.js
+++ b/js/003-data/miscData.js
@@ -1955,7 +1955,7 @@ App.Data.misc = {
 			value: "a kimono",
 			fs: "FSEdoRevivalist",
 			unlock: function(slave) {
-				if (V.clothesBoughtKimono > 0 || V.continent === "Japan"){
+				if (V.clothesBoughtKimono > 0 || V.continent === "Japan") {
 					return true;
 				}
 			}
@@ -2045,7 +2045,7 @@ App.Data.misc = {
 			name: "Hijab and blouse",
 			value: "a hijab and blouse",
 			unlock: function(slave) {
-				if (V.clothesBoughtConservative > 0 && (V.clothesBoughtMiddleEastern > 0 || V.continent === "the Middle East")){
+				if (V.clothesBoughtConservative > 0 && (V.clothesBoughtMiddleEastern > 0 || V.continent === "the Middle East")) {
 					return true;
 				}
 			}
@@ -2123,7 +2123,7 @@ App.Data.misc = {
 			name: "T-shirt and thong",
 			value: "a t-shirt and thong",
 			unlock: function(slave) {
-				if (V.clothesBoughtUnderwear > 0 && V.clothesBoughtCasual> 0) {
+				if (V.clothesBoughtUnderwear > 0 && V.clothesBoughtCasual > 0) {
 					return true;
 				}
 			}
@@ -2152,9 +2152,9 @@ App.Data.misc = {
 		{name: "Sports bra", value: "a sports bra", unlock: function(slave) { if (V.clothesBoughtSports > 0) { return true; } }},
 
 		{
-			name:	"Sport shorts and a t-shirt",
+			name: "Sport shorts and a t-shirt",
 			value: "sport shorts and a t-shirt",
-			unlock: function(slave)	{
+			unlock: function(slave) {
 				if (V.clothesBoughtSports && V.clothesBoughtCasual) {
 					return true;
 				}
@@ -2171,7 +2171,7 @@ App.Data.misc = {
 			name: "Striped bra",
 			value: "a striped bra",
 			unlock: function(slave) {
-				if (V.clothesBoughtPantsu > 0 || V.continent === "Japan"){
+				if (V.clothesBoughtPantsu > 0 || V.continent === "Japan") {
 					return true;
 				}
 			}
@@ -2180,7 +2180,7 @@ App.Data.misc = {
 			name: "Striped panties",
 			value: "striped panties",
 			unlock: function(slave) {
-				if (V.clothesBoughtPantsu > 0 || V.continent === "Japan"){
+				if (V.clothesBoughtPantsu > 0 || V.continent === "Japan") {
 					return true;
 				}
 			}
@@ -2189,7 +2189,7 @@ App.Data.misc = {
 			name: "Striped underwear",
 			value: "striped underwear",
 			unlock: function(slave) {
-				if (V.clothesBoughtPantsu > 0 || continent ==="Japan") {
+				if (V.clothesBoughtPantsu > 0 || continent === "Japan") {
 					return true;
 				}
 			}
@@ -2247,10 +2247,16 @@ App.Data.misc = {
 		{name: "Bell", value: "bell collar"},
 		{name: "Cowbell", value: "leather with cowbell"},
 		{
-			name: "Bowtie collar", value: "bowtie", fs: "FSGenderFundamentalist", rs: "clothesBoughtBunny"
+			name: "Bowtie collar",
+			value: "bowtie",
+			fs: "FSGenderFundamentalist",
+			rs: "clothesBoughtBunny"
 		},
 		{
-			name: "Ancient Egyptian", value: "ancient Egyptian", fs: "FSEgyptianRevivalist", rs: "clothesBoughtEgypt"
+			name: "Ancient Egyptian",
+			value: "ancient Egyptian",
+			fs: "FSEgyptianRevivalist",
+			rs: "clothesBoughtEgypt"
 		},
 	],